Add pg_description table for info on tables, columns, operators, types, and aggregate...
authorBruce Momjian
Thu, 13 Nov 1997 03:23:18 +0000 (03:23 +0000)
committerBruce Momjian
Thu, 13 Nov 1997 03:23:18 +0000 (03:23 +0000)
16 files changed:
src/backend/Makefile
src/backend/catalog/Makefile
src/backend/catalog/genbki.sh
src/bin/initdb/initdb.sh
src/bin/psql/psql.c
src/include/catalog/indexing.h
src/include/catalog/pg_am.h
src/include/catalog/pg_class.h
src/include/catalog/pg_description.h [new file with mode: 0644]
src/include/catalog/pg_language.h
src/include/catalog/pg_opclass.h
src/include/catalog/pg_operator.h
src/include/catalog/pg_proc.h
src/include/catalog/pg_type.h
src/include/postgres.h
src/man/psql.1

index c671fbabadfc43b2c8f0179da546719aecd6c75d..0fa6123b53862b4478d4ffd56c7f2821ab1652b7 100644 (file)
@@ -34,7 +34,7 @@
 #
 #
 # IDENTIFICATION
-#    $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.26 1997/09/20 16:08:24 thomas Exp $
+#    $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.27 1997/11/13 03:22:10 momjian Exp $
 #
 #-------------------------------------------------------------------------
 
@@ -51,7 +51,8 @@ endif
 
 OBJS = $(DIRS:%=%/SUBSYS.o)
 
-all: postgres $(POSTGRES_IMP) global1.bki.source local1_template1.bki.source
+all: postgres $(POSTGRES_IMP) global1.bki.source local1_template1.bki.source \
+               global1.description local1_template1.description
 
 postgres: $(OBJS) ../utils/version.o
    $(CC) -o postgres $(OBJS) ../utils/version.o $(LDFLAGS)
@@ -64,10 +65,12 @@ $(DIRS:%=%.dir):
 ../utils/version.o:
    $(MAKE) -C ../utils version.o        
 
-global1.bki.source local1_template1.bki.source: catalog/$@
+global1.bki.source local1_template1.bki.source \
+global1.description local1_template1.description: catalog/$@
    cp catalog/$@ .
 
-catalog/global1.bki.source catalog/local1_template1.bki.source:
+catalog/global1.bki.source catalog/local1_template1.bki.source \
+catalog/global1.description catalog/local1_template1.description:
    $(MAKE) -C catalog $@
 
 # The postgres.o target is needed by the rule in Makefile.global that
@@ -91,7 +94,8 @@ fmgr.h:
 #############################################################################
 clean:
    rm -f postgres $(POSTGRES_IMP) fmgr.h parse.h \
-       global1.bki.source local1_template1.bki.source
+       global1.bki.source local1_template1.bki.source \
+       global1.description local1_template1.description
    for i in $(DIRS); do $(MAKE) -C $$i clean PORTNAME=$(PORTNAME); done
 
 .DEFAULT:
@@ -115,6 +119,7 @@ clean:
 
 install: $(LIBDIR) $(BINDIR) $(HEADERDIR) postgres $(POSTGRES_IMP) fmgr.h\
          global1.bki.source local1_template1.bki.source \
+         global1.description local1_template1.description \
          libpq/pg_hba.conf.sample optimizer/geqo/pg_geqo.sample
    
    $(INSTALL) $(INSTL_EXE_OPTS) postgres $(BINDIR)/postgres
@@ -126,8 +131,12 @@ endif
    $(INSTALL) $(INSTLOPTS) fmgr.h $(HEADERDIR)/fmgr.h
    $(INSTALL) $(INSTLOPTS) global1.bki.source \
      $(LIBDIR)/global1.bki.source
+   $(INSTALL) $(INSTLOPTS) global1.description \
+     $(LIBDIR)/global1.description
    $(INSTALL) $(INSTLOPTS) local1_template1.bki.source \
      $(LIBDIR)/local1_template1.bki.source
+   $(INSTALL) $(INSTLOPTS) local1_template1.description \
+     $(LIBDIR)/local1_template1.description
    $(INSTALL) $(INSTLOPTS) libpq/pg_hba.conf.sample \
      $(LIBDIR)/pg_hba.conf.sample
    $(INSTALL) $(INSTLOPTS) optimizer/geqo/pg_geqo.sample \
index c2d729075386329e43281e50a33896dccde05371..085e473a3c5357bdc7c97b6c84593bb734d1ab02 100644 (file)
@@ -4,7 +4,7 @@
 #    Makefile for catalog
 #
 # IDENTIFICATION
-#    $Header: /cvsroot/pgsql/src/backend/catalog/Makefile,v 1.3 1997/11/02 15:24:52 vadim Exp $
+#    $Header: /cvsroot/pgsql/src/backend/catalog/Makefile,v 1.4 1997/11/13 03:22:18 momjian Exp $
 #
 #-------------------------------------------------------------------------
 
@@ -20,7 +20,8 @@ CFLAGS+=$(INCLUDE_OPT)
 OBJS = catalog.o heap.o index.o indexing.o \
        pg_aggregate.o pg_operator.o pg_proc.o pg_type.o
 
-all: SUBSYS.o global1.bki.source local1_template1.bki.source
+all: SUBSYS.o global1.bki.source local1_template1.bki.source \
+       global1.description local1_template1.description
 
 SUBSYS.o: $(OBJS)
    $(LD) -r -o SUBSYS.o $(OBJS)
@@ -39,21 +40,21 @@ LOCALBKI_SRCS= $(addprefix ../../include/catalog/, \
                  pg_operator.h pg_opclass.h pg_am.h pg_amop.h pg_amproc.h \
                  pg_language.h pg_parg.h \
                  pg_aggregate.h pg_ipl.h pg_inheritproc.h \
-                 pg_rewrite.h pg_listener.h indexing.h \
+                 pg_rewrite.h pg_listener.h pg_description.h indexing.h \
                 )
 
 global1.bki.source: $(GENBKI) $(GLOBALBKI_SRCS)
-   sh $(SHOPTS) $(GENBKI) $(BKIOPTS) $(GLOBALBKI_SRCS) > $@
+   sh $(SHOPTS) $(GENBKI) $(BKIOPTS) $(GLOBALBKI_SRCS) > $@ 2>global1.description
 
 local1_template1.bki.source: $(GENBKI) $(LOCALBKI_SRCS)
-   sh $(SHOPTS) $(GENBKI) $(BKIOPTS) $(LOCALBKI_SRCS) > $@
+   sh $(SHOPTS) $(GENBKI) $(BKIOPTS) $(LOCALBKI_SRCS) > $@ 2>local1_template1.description
 
 depend dep:
    $(CC) -MM $(INCLUDE_OPT) *.c >depend
 
 clean: 
-   rm -f SUBSYS.o $(OBJS) global1.bki.source local1_template1.bki.source
-
+   rm -f SUBSYS.o $(OBJS) global1.bki.source local1_template1.bki.source \
+               global1.description local1_template1.description
 
 ifeq (depend,$(wildcard depend))
 include depend
index 32496694543290c0501de848df43aa9a65f3bb4e..ef43d5d242bb5a960942162e056d13a060c4b343 100644 (file)
@@ -10,7 +10,7 @@
 #
 #
 # IDENTIFICATION
-#    $Header: /cvsroot/pgsql/src/backend/catalog/Attic/genbki.sh,v 1.8 1997/09/06 18:27:11 momjian Exp $
+#    $Header: /cvsroot/pgsql/src/backend/catalog/Attic/genbki.sh,v 1.9 1997/11/13 03:22:20 momjian Exp $
 #
 # NOTES
 #    non-essential whitespace is removed from the generated file.
 #    end can be changed into another awk script or something smarter..
 #
 #-------------------------------------------------------------------------
+trap "rm -f /tmp/genbki.tmp" 0 1 2 3 15
+
+# make sure it is empty
+>/tmp/genbki.tmp
 
 PATH=$PATH:/lib:/usr/ccs/lib       # to find cpp
 BKIOPTS=''
@@ -118,6 +122,27 @@ raw == 1   { print; next; }
 /^DATA\(/ {
    data = substr($0, 6, length($0) - 6);
    print data;
+   nf = 1;
+   oid = 0;
+   while (nf <= NF-3)
+   {
+       if ($nf == "OID" && $(nf+1) == "=")
+       {
+           oid = $(nf+2);
+           break;
+       }
+       nf++;
+   }
+   next;
+}
+
+/^DESCR\(/ {
+   if (oid != 0)
+   {
+       data = substr($0, 8, length($0) - 9);
+       if (data != "")
+           printf "%d  %s\n", oid, data >> "/tmp/genbki.tmp";
+   }
    next;
 }
 
@@ -235,6 +260,9 @@ cpp $BKIOPTS | \
 sed -e '/^[    ]*$/d' \
     -e 's/[    ][  ]*/ /g'
 
+# send pg_description file contents to standard error
+cat /tmp/genbki.tmp 1>&2
+
 # ----------------
 #  all done
 # ----------------
index a881e43dfd6d27b84191dfb435e64b07cc5f660d..6319be6870de74d7fc8988c724d064bca949aa11 100644 (file)
@@ -26,7 +26,7 @@
 #
 #
 # IDENTIFICATION
-#    $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.24 1997/02/19 13:11:58 scrappy Exp $
+#    $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.25 1997/11/13 03:22:34 momjian Exp $
 #
 #-------------------------------------------------------------------------
 
@@ -152,6 +152,8 @@ fi
 
 TEMPLATE=$PGLIB/local1_template1.bki.source
 GLOBAL=$PGLIB/global1.bki.source
+TEMPLATE_DESCR=$PGLIB/local1_template1.description
+GLOBAL_DESCR=$PGLIB/global1.description
 PG_HBA_SAMPLE=$PGLIB/pg_hba.conf.sample
 PG_GEQO_SAMPLE=$PGLIB/pg_geqo.sample
 
@@ -344,8 +346,11 @@ fi
 
 echo
 
-if [ $debug -eq 0 ]; then
-    echo "vacuuming template1"
-    echo "vacuum" | postgres -F -Q -D$PGDATA template1 2>&1 > /dev/null |\
-    grep -v "^DEBUG:"
-fi
+echo "vacuuming template1"
+echo "vacuum" | postgres -F -Q -D$PGDATA template1 2>&1 > /dev/null |\
+   grep -v "^DEBUG:"
+
+echo "loading pg_description"
+echo "copy pg_description from '$TEMPLATE_DESCR'" | postgres -F -Q -D$PGDATA template1 > /dev/null
+echo "copy pg_description from '$GLOBAL_DESCR'" | postgres -F -Q -D$PGDATA template1 > /dev/null
+
index db1787438834c29dca79ed8bb4ae4cfd34b8d17f..8b2a993c4340e03a51af386a3a015c1632837f90 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *   $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.101 1997/11/07 06:27:52 thomas Exp $
+ *   $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.102 1997/11/13 03:22:42 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -116,6 +116,7 @@ handleCopyIn(PGresult *res, const bool mustprompt,
             FILE *copystream);
 static int tableList(PsqlSettings *pset, bool deep_tablelist, char info_type);
 static int tableDesc(PsqlSettings *pset, char *table, FILE *fout);
+static int objectDescription(PsqlSettings *pset, char *object, FILE *fout);
 static int rightsList(PsqlSettings *pset);
 static void prompt_for_password(char *username, char *password);
 static char *
@@ -224,6 +225,7 @@ slashUsage(PsqlSettings *pset)
    fprintf(fout, " \\connect   -- connect to new database (currently '%s')\n", PQdb(pset->db));
    fprintf(fout, " \\copy table {from | to} \n");
    fprintf(fout, " \\d [] -- list tables and indices in database or columns in 
, * for all\n");
+   fprintf(fout, " \\dc []- list comment for table, field, type, function, or operator.\n");
    fprintf(fout, " \\di          -- list only indices in database\n");
    fprintf(fout, " \\ds          -- list only sequences in database\n");
    fprintf(fout, " \\dt          -- list only tables in database\n");
@@ -331,8 +333,8 @@ tableList(PsqlSettings *pset, bool deep_tablelist, char info_type)
 #endif
    
    listbuf[0] = '\0';
-   strcat(listbuf, "SELECT usename, relname, relkind, relhasrules");
-   strcat(listbuf, "  FROM pg_class, pg_user ");
+   strcat(listbuf, "SELECT usename, relname, relkind, relhasrules ");
+   strcat(listbuf, "FROM pg_class, pg_user ");
    switch (info_type)
    {
        case 't':
@@ -356,8 +358,8 @@ tableList(PsqlSettings *pset, bool deep_tablelist, char info_type)
     * the usesysid = relowner won't work on stock 1.0 dbs, need to add in
     * the int4oideq function
     */
-   strcat(listbuf, "  and usesysid = relowner");
-   strcat(listbuf, "  ORDER BY relname ");
+   strcat(listbuf, " and usesysid = relowner");
+   strcat(listbuf, " ORDER BY relname ");
    if (!(res = PSQLexec(pset, listbuf)))
        return -1;
    /* first, print out the attribute names */
@@ -472,8 +474,8 @@ rightsList(PsqlSettings *pset)
    PGresult   *res;
 
    listbuf[0] = '\0';
-   strcat(listbuf, "SELECT relname, relacl");
-   strcat(listbuf, "  FROM pg_class, pg_user ");
+   strcat(listbuf, "SELECT relname, relacl ");
+   strcat(listbuf, "FROM pg_class, pg_user ");
    strcat(listbuf, "WHERE ( relkind = 'r' OR relkind = 'i') ");
    strcat(listbuf, "  and relname !~ '^pg_'");
    strcat(listbuf, "  and relname !~ '^xin[vx][0-9]+'");
@@ -560,9 +562,9 @@ tableDesc(PsqlSettings *pset, char *table, FILE *fout)
    }
 
    descbuf[0] = '\0';
-   strcat(descbuf, "SELECT a.attnum, a.attname, t.typname, a.attlen, a.attnotnull");
-   strcat(descbuf, "  FROM pg_class c, pg_attribute a, pg_type t ");
-   strcat(descbuf, "    WHERE c.relname = '");
+   strcat(descbuf, "SELECT a.attnum, a.attname, t.typname, a.attlen, a.attnotnull ");
+   strcat(descbuf, "FROM pg_class c, pg_attribute a, pg_type t ");
+   strcat(descbuf, "WHERE c.relname = '");
    strcat(descbuf, table);
    strcat(descbuf, "'");
    strcat(descbuf, "    and a.attnum > 0 ");
@@ -659,6 +661,197 @@ tableDesc(PsqlSettings *pset, char *table, FILE *fout)
    }
 }
 
+/*
+ * Get object comments
+ *
+ * Describe the columns in a database table. returns 0 if all went well
+ *
+ *
+ */
+int
+objectDescription(PsqlSettings *pset, char *object, FILE *fout)
+{
+   char        descbuf[256];
+   int         nDescriptions;
+   int         i;
+   PGresult   *res;
+   int         usePipe = 0;
+   char       *pagerenv;
+
+#ifdef TIOCGWINSZ
+   if (fout == NULL &&
+       pset->notty == 0 &&
+       (ioctl(fileno(stdout), TIOCGWINSZ, &screen_size) == -1 ||
+        screen_size.ws_col == 0 ||
+        screen_size.ws_row == 0))
+   {
+#endif
+       screen_size.ws_row = 24;
+       screen_size.ws_col = 80;
+#ifdef TIOCGWINSZ
+   }
+#endif
+   
+   /* Build the query */
+
+   while (isspace(*object))
+       object++;
+       
+   /* if the object name is surrounded by double-quotes, then don't convert case */
+   if (*object == '"')
+   {
+       object++;
+       if (*(object+strlen(object)-1) == '"')
+           *(object+strlen(object)-1) = '\0';
+   }
+   else
+   {
+       for (i = strlen(object); i >= 0; i--)
+           if (isupper(object[i]))
+               object[i] = tolower(object[i]);
+   }
+
+   descbuf[0] = '\0';
+   if (strchr(object,'.') != NULL)
+   {
+       char    table[NAMEDATALEN],column[NAMEDATALEN];
+
+       StrNCpy(table,object,
+           ((strchr(object,'.')-object+1) < NAMEDATALEN) ?
+               (strchr(object,'.')-object+1) : NAMEDATALEN);
+       StrNCpy(column,strchr(object,'.')+1,NAMEDATALEN);
+       strcat(descbuf, "SELECT DISTINCT description ");
+       strcat(descbuf, "FROM pg_class, pg_attribute, pg_description ");
+       strcat(descbuf, "WHERE pg_class.relname = '");
+       strcat(descbuf, table);
+       strcat(descbuf, "' and ");
+       strcat(descbuf, "pg_class.oid = pg_attribute.attrelid and ");
+       strcat(descbuf, "pg_attribute.attname = '");
+       strcat(descbuf, column);
+       strcat(descbuf, "' and ");
+       strcat(descbuf, " pg_attribute.oid = pg_description.rowoid " );
+       if (!(res = PSQLexec(pset, descbuf)))
+           return -1;
+   }
+   else
+   {       
+       strcat(descbuf, "SELECT DISTINCT description ");
+       strcat(descbuf, "FROM pg_class, pg_description ");
+       strcat(descbuf, "WHERE pg_class.relname = '");
+       strcat(descbuf, object);
+       strcat(descbuf, "'" );
+       strcat(descbuf, " and pg_class.oid = pg_description.rowoid " );
+       if (!(res = PSQLexec(pset, descbuf)))
+           return -1;
+       else if (PQntuples(res) <= 0)
+       {
+           PQclear(res);
+           descbuf[0] = '\0';
+           strcat(descbuf, "SELECT DISTINCT description ");
+           strcat(descbuf, "FROM pg_type, pg_description ");
+           strcat(descbuf, "WHERE pg_type.typname = '");
+           strcat(descbuf, object);
+           strcat(descbuf, "'" );
+           strcat(descbuf, " and pg_type.oid = pg_description.rowoid " );
+           if (!(res = PSQLexec(pset, descbuf)))
+               return -1;
+           else if (PQntuples(res) <= 0)
+           {
+               PQclear(res);
+               descbuf[0] = '\0';
+               strcat(descbuf, "SELECT DISTINCT description ");
+               strcat(descbuf, "FROM pg_type, pg_description ");
+               strcat(descbuf, "WHERE pg_type.typname = '");
+               strcat(descbuf, object);
+               strcat(descbuf, "'" );
+               strcat(descbuf, " and pg_type.oid = pg_description.rowoid " );
+               if (!(res = PSQLexec(pset, descbuf)))
+                   return -1;
+               else if (PQntuples(res) <= 0)
+               {
+                   PQclear(res);
+                   descbuf[0] = '\0';
+                   strcat(descbuf, "SELECT DISTINCT description ");
+                   strcat(descbuf, "FROM pg_proc, pg_description ");
+                   strcat(descbuf, "WHERE pg_proc.proname = '");
+                   strcat(descbuf, object);
+                   strcat(descbuf, "'" );
+                   strcat(descbuf, " and pg_proc.oid = pg_description.rowoid " );
+                   if (!(res = PSQLexec(pset, descbuf)))
+                       return -1;
+                   else if (PQntuples(res) <= 0)
+                   {
+                       PQclear(res);
+                       descbuf[0] = '\0';
+                       strcat(descbuf, "SELECT DISTINCT description ");
+                       strcat(descbuf, "FROM pg_operator, pg_description ");
+                       strcat(descbuf, "WHERE pg_operator.oprname = '");
+                       strcat(descbuf, object);
+                       strcat(descbuf, "'" );
+                       strcat(descbuf, " and pg_operator.oid = pg_description.rowoid " );
+                       if (!(res = PSQLexec(pset, descbuf)))
+                           return -1;
+                       else if (PQntuples(res) <= 0)
+                       {
+                           PQclear(res);
+                           descbuf[0] = '\0';
+                           strcat(descbuf, "SELECT DISTINCT description ");
+                           strcat(descbuf, "FROM pg_aggregate, pg_description ");
+                           strcat(descbuf, "WHERE pg_aggregate.aggname = '");
+                           strcat(descbuf, object);
+                           strcat(descbuf, "'" );
+                           strcat(descbuf, " and pg_aggregate.oid = pg_description.rowoid " );
+                           if (!(res = PSQLexec(pset, descbuf)))
+                               return -1;
+                       }
+                   }
+               }
+           }
+       }
+   }
+   nDescriptions = PQntuples(res);
+   if (nDescriptions > 0)
+   {
+       if (fout == NULL)
+       {
+           if (pset->notty == 0 &&
+               (pagerenv = getenv("PAGER")) &&
+               pagerenv[0] != '\0' &&
+               screen_size.ws_row <= nDescriptions + 1 &&
+               (fout = popen(pagerenv, "w")))
+           {
+               usePipe = 1;
+               pqsignal(SIGPIPE, SIG_IGN);
+           }
+           else
+               fout = stdout;
+       }
+       /*
+        * * Display the information
+        */
+
+       fprintf(fout,"\nObject    = %s\n", object);
+
+       /* next, print out the instances */
+       for (i = 0; i < PQntuples(res); i++)
+           fprintf(fout,"%s\n",PQgetvalue(res, i, 0));
+
+       PQclear(res);
+       if (usePipe)
+       {
+           pclose(fout);
+           pqsignal(SIGPIPE, SIG_DFL);
+       }
+       return (0);
+
+   }
+   else
+   {
+       fprintf(stderr, "Couldn't find comments for object %s!\n", object);
+       return (-1);
+   }
+}
+
 typedef char *(*READ_ROUTINE) (char *prompt, FILE *source);
 
 /*
@@ -1505,31 +1698,29 @@ HandleSlashCmds(PsqlSettings *pset,
            break;
        case 'd':               /* \d describe tables or columns in a
                                 * table */
-           if (strncmp(cmd, "dt", 2) == 0)
-           {                   /* only tables */
-               tableList(pset, false, 't');
-           }
+           if (strncmp(cmd, "dc", 2) == 0)
+                               /* descriptions */
+               objectDescription(pset, optarg+1, NULL);
            else if (strncmp(cmd, "di", 2) == 0)
-           {                   /* only indices */
+                               /* only indices */
                tableList(pset, false, 'i');
-           }
            else if (strncmp(cmd, "ds", 2) == 0)
-           {                   /* only sequences */
+                               /* only sequences */
                tableList(pset, false, 'S');
-           }
+           else if (strncmp(cmd, "dt", 2) == 0)
+                               /* only tables */
+               tableList(pset, false, 't');
            else if (!optarg)
-           {                   /* show tables, sequences and indices */
+                               /* show tables, sequences and indices */
                tableList(pset, false, 'b');
-           }
            else if (strcmp(optarg, "*") == 0)
            {                   /* show everything */
                if (tableList(pset, false, 'b') == 0)
                    tableList(pset, true, 'b');
            }
            else
-           {                   /* describe the specified table */
+                               /* describe the specified table */
                tableDesc(pset, optarg, NULL);
-           }
            break;
        case 'e':               /* edit */
            {
index 7897d570e9e719221002da2a2dd5cc4d576beb4a..e07ab73871ce84629a7a5660e551ac5ebde7294c 100644 (file)
@@ -7,7 +7,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: indexing.h,v 1.7 1997/09/08 21:51:25 momjian Exp $
+ * $Id: indexing.h,v 1.8 1997/11/13 03:22:54 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -27,6 +27,7 @@
 #define Num_pg_attrdef_indices 1
 #define Num_pg_relcheck_indices 1
 #define Num_pg_trigger_indices 1
+#define Num_pg_description_indices 1
 
 
 /*
@@ -45,6 +46,7 @@
 #define AttrDefaultIndex   "pg_attrdefind"
 #define RelCheckIndex     "pg_relcheckind"
 #define TriggerRelidIndex  "pg_trigrelidind"
+#define DescriptionRowOidIndex "pg_descrrowoidind"
 
 extern char *Name_pg_attr_indices[];
 extern char *Name_pg_proc_indices[];
@@ -53,6 +55,7 @@ extern char *Name_pg_class_indices[];
 extern char *Name_pg_attrdef_indices[];
 extern char *Name_pg_relcheck_indices[];
 extern char *Name_pg_trigger_indices[];
+extern char *Name_pg_rowoid_indices[];
 
 extern char *IndexedCatalogNames[];
 
@@ -116,6 +119,8 @@ DECLARE_INDEX(pg_relcheckind on pg_relcheck using btree(rcrelid oid_ops));
 
 DECLARE_INDEX(pg_trigrelidind on pg_trigger using btree(tgrelid oid_ops));
 
+DECLARE_INDEX(pg_descrrowoidind on pg_description using btree(rowoid oid_ops));
+
 /* now build indices in the initialization scripts */
 BUILD_INDICES
 
index 7c83398fe1f8eff075182daae91888d0da4f23cf..930f3ea8dd2ac3308b1369301c3a3adf1ee23050 100644 (file)
@@ -7,7 +7,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: pg_am.h,v 1.4 1997/09/08 02:34:55 momjian Exp $
+ * $Id: pg_am.h,v 1.5 1997/11/13 03:22:57 momjian Exp $
  *
  * NOTES
  *     the genbki.sh script reads this file and generates .bki
@@ -100,15 +100,20 @@ typedef FormData_pg_am *Form_pg_am;
  */
 
 DATA(insert OID = 405 (  hash PGUID "o"  1 1 hashgettuple hashinsert hashdelete - - - - hashbeginscan hashrescan hashendscan hashmarkpos hashrestrpos - - hashbuild - - ));
+DESCR("");
 DATA(insert OID = 402 (  rtree PGUID "o" 8 3 rtgettuple rtinsert rtdelete - - - - rtbeginscan rtrescan rtendscan rtmarkpos rtrestrpos - - rtbuild - - ));
+DESCR("");
 DATA(insert OID = 403 (  btree PGUID "o" 5 1 btgettuple btinsert btdelete - - - - btbeginscan btrescan btendscan btmarkpos btrestrpos - - btbuild - - ));
+DESCR("");
 #define BTREE_AM_OID 403
 DATA(insert OID = 783 (  gist PGUID "o" 100 7 gistgettuple gistinsert gistdelete - - - - gistbeginscan gistrescan gistendscan gistmarkpos gistrestrpos - - gistbuild - - ));
+DESCR("");
 
 BKI_BEGIN
 #ifdef NOBTREE
 BKI_END
 DATA(insert OID = 404 (  nobtree PGUID "o" 5 1 nobtgettuple nobtinsert nobtdelete - - - - nobtbeginscan nobtrescan nobtendscan nobtmarkpos nobtrestrpos - - nobtbuild - - ));
+DESCR("");
 BKI_BEGIN
 #endif                         /* NOBTREE */
 BKI_END
index dad9f5c9541f1afc0ac331c7ae3f56c297e5a9f1..9981ef59e06935ca72f3a1397d4c2e9971efb7d1 100644 (file)
@@ -7,7 +7,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: pg_class.h,v 1.12 1997/11/02 15:26:59 vadim Exp $
+ * $Id: pg_class.h,v 1.13 1997/11/13 03:22:58 momjian Exp $
  *
  * NOTES
  *   ``pg_relation'' is being replaced by ``pg_class''.  currently
@@ -129,22 +129,39 @@ typedef FormData_pg_class *Form_pg_class;
  */
 
 DATA(insert OID = 1247 (  pg_type 71         PGUID 0 0 0 0 0 f f r n 16 0 0 0 f _null_ ));
+DESCR("");
 DATA(insert OID = 1249 (  pg_attribute 75    PGUID 0 0 0 0 0 f f r n 16 0 0 0 f _null_ ));
+DESCR("");
 DATA(insert OID = 1251 (  pg_demon 76        PGUID 0 0 0 0 0 f t r n 4 0 0 0 f _null_ ));
+DESCR("");
 DATA(insert OID = 1253 (  pg_magic 80        PGUID 0 0 0 0 0 f t r n 2 0 0 0 f _null_ ));
+DESCR("");
 DATA(insert OID = 1255 (  pg_proc 81         PGUID 0 0 0 0 0 f f r n 16 0 0 0 f _null_ ));
+DESCR("");
 DATA(insert OID = 1257 (  pg_server 82       PGUID 0 0 0 0 0 f t r n 3 0 0 0 f _null_ ));
+DESCR("");
 DATA(insert OID = 1259 (  pg_class 83        PGUID 0 0 0 0 0 f f r n 18 0 0 0 f _null_ ));
+DESCR("");
 DATA(insert OID = 1260 (  pg_user 86         PGUID 0 0 0 0 0 f t r n 6 0 0 0 f _null_ ));
+DESCR("");
 DATA(insert OID = 1261 (  pg_group 87        PGUID 0 0 0 0 0 f t s n 3 0 0 0 f _null_ ));
+DESCR("");
 DATA(insert OID = 1262 (  pg_database 88     PGUID 0 0 0 0 0 f t r n 3 0 0 0 f _null_ ));
+DESCR("");
 DATA(insert OID = 1263 (  pg_defaults 89     PGUID 0 0 0 0 0 f t r n 2 0 0 0 f _null_ ));
+DESCR("");
 DATA(insert OID = 1264 (  pg_variable 90     PGUID 0 0 0 0 0 f t s n 2 0 0 0 f _null_ ));
+DESCR("");
 DATA(insert OID = 1269 (  pg_log  99         PGUID 0 0 0 0 0 f t s n 1 0 0 0 f _null_ ));
+DESCR("");
 DATA(insert OID = 1273 (  pg_hosts 101       PGUID 0 0 0 0 0 f t s n 3 0 0 0 f _null_ ));
+DESCR("");
 DATA(insert OID = 1215 (  pg_attrdef 109     PGUID 0 0 0 0 0 t t r n 4 0 0 0 f _null_ ));
+DESCR("");
 DATA(insert OID = 1216 (  pg_relcheck 110    PGUID 0 0 0 0 0 t t r n 4 0 0 0 f _null_ ));
+DESCR("");
 DATA(insert OID = 1219 (  pg_trigger 111     PGUID 0 0 0 0 0 t t r n 7 0 0 0 f _null_ ));
+DESCR("");
 
 #define RelOid_pg_type         1247
 #define RelOid_pg_demon            1251
diff --git a/src/include/catalog/pg_description.h b/src/include/catalog/pg_description.h
new file mode 100644 (file)
index 0000000..afdcf9d
--- /dev/null
@@ -0,0 +1,65 @@
+/*-------------------------------------------------------------------------
+ *
+ * pg_description.h--
+ *   definition of the system "description" relation (pg_description)
+ *
+ *
+ * Copyright (c) 1994, Regents of the University of California
+ *
+ * $Id: pg_description.h,v 1.1 1997/11/13 03:22:59 momjian Exp $
+ *
+ * NOTES
+ *     the genbki.sh script reads this file and generates .bki
+ *     information from the DATA() statements.
+ *
+ *     XXX do NOT break up DATA() statements into multiple lines!
+ *         the scripts are not as smart as you might think...
+ *
+ *-------------------------------------------------------------------------
+ */
+#ifndef PG_DESCRIPTION_H
+#define PG_DESCRIPTION_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_description definition.  cpp turns this into
+ *     typedef struct FormData_pg_description
+ * ----------------
+ */
+CATALOG(pg_description)
+{
+   Oid         rowoid;
+   text        description;
+} FormData_pg_description;
+
+/* ----------------
+ *     Form_pg_description corresponds to a pointer to a tuple with
+ *     the format of pg_description relation.
+ * ----------------
+ */
+typedef FormData_pg_description *Form_pg_description;
+
+/* ----------------
+ *     compiler constants for pg_descrpition
+ * ----------------
+ */
+#define Natts_pg_description           2
+#define Anum_pg_description_rowoid     1
+#define Anum_pg_description_description    2
+
+/* ----------------
+ *     initial contents of pg_description
+ * ----------------
+ */
+
+/* Because the contents of this table are taken from the other *.h files,
+   there is no initialization.
+*/
+
+#endif                         /* PG_DESCRIPTION_H */
index d666688cb40cfced76127a85c85a9daaa880a293..9bf4c110838d884af1b74c2cf83c3c06479024ec 100644 (file)
@@ -7,7 +7,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: pg_language.h,v 1.5 1997/10/28 15:08:05 vadim Exp $
+ * $Id: pg_language.h,v 1.6 1997/11/13 03:23:02 momjian Exp $
  *
  * NOTES
  *   the genbki.sh script reads this file and generates .bki
@@ -63,11 +63,15 @@ typedef FormData_pg_language *Form_pg_language;
  */
 
 DATA(insert OID = 11 ( internal f 0 0 "n/a" ));
+DESCR("");
 #define INTERNALlanguageId 11
 DATA(insert OID = 12 ( lisp f 0 0 "/usr/ucb/liszt" ));
+DESCR("");
 DATA(insert OID = 13 ( "C" f 0 0 "/bin/cc" ));
+DESCR("");
 #define ClanguageId 13
 DATA(insert OID = 14 ( "sql" f 0 0 "postgres"));
+DESCR("");
 #define SQLlanguageId 14
 
 
index 0d3b9abb8a42c6088737ad2b0f10e68a26e54d53..4da8552d8f5fdbf8efd0b99594f17ca0e8175945 100644 (file)
@@ -7,7 +7,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: pg_opclass.h,v 1.5 1997/09/08 02:35:19 momjian Exp $
+ * $Id: pg_opclass.h,v 1.6 1997/11/13 03:23:03 momjian Exp $
  *
  * NOTES
  *   the genbki.sh script reads this file and generates .bki
@@ -63,33 +63,61 @@ typedef FormData_pg_opclass *Form_pg_opclass;
  * in, which are invalid OID's anyway.  --djm
  */
 DATA(insert OID =  406 (   char2_ops       409   ));
+DESCR("");
 DATA(insert OID =  407 (   char4_ops       410   ));
+DESCR("");
 DATA(insert OID =  408 (   char8_ops       411   ));
+DESCR("");
 DATA(insert OID = 1181 (   name_ops         19   ));
+DESCR("");
 DATA(insert OID =  421 (   int2_ops         21   ));
+DESCR("");
 DATA(insert OID =  422 (   box_ops         603   ));
+DESCR("");
 DATA(insert OID =  423 (   float8_ops      701   ));
+DESCR("");
 DATA(insert OID =  424 (   int24_ops         0   ));
+DESCR("");
 DATA(insert OID =  425 (   int42_ops         0   ));
+DESCR("");
 DATA(insert OID =  426 (   int4_ops         23   ));
+DESCR("");
 #define INT4_OPS_OID 426
 DATA(insert OID =  427 (   oid_ops          26   ));
+DESCR("");
 DATA(insert OID =  428 (   float4_ops      700   ));
+DESCR("");
 DATA(insert OID =  429 (   char_ops         18   ));
+DESCR("");
 DATA(insert OID =  430 (   char16_ops       20   ));
+DESCR("");
 DATA(insert OID =  431 (   text_ops         25   ));
+DESCR("");
 DATA(insert OID =  432 (   abstime_ops     702   ));
+DESCR("");
 DATA(insert OID =  433 (   bigbox_ops        0   ));
+DESCR("");
 DATA(insert OID =  434 (   poly_ops        604   ));
+DESCR("");
 DATA(insert OID =  435 (   oidint4_ops     910   ));
+DESCR("");
 DATA(insert OID =  436 (   oidname_ops     911   ));
+DESCR("");
 DATA(insert OID =  437 (   oidint2_ops     810   ));
+DESCR("");
 DATA(insert OID =  714 (   circle_ops      718   ));
+DESCR("");
 DATA(insert OID = 1076 (   bpchar_ops     1042   ));
+DESCR("");
 DATA(insert OID = 1077 (   varchar_ops    1043   ));
+DESCR("");
 DATA(insert OID = 1114 (   date_ops       1082   ));
+DESCR("");
 DATA(insert OID = 1115 (   time_ops       1083   ));
+DESCR("");
 DATA(insert OID = 1312 (   datetime_ops   1184   ));
+DESCR("");
 DATA(insert OID = 1313 (   timespan_ops   1186   ));
+DESCR("");
 
 #endif                         /* PG_OPCLASS_H */
index 304f507f09434e87bb4166130dc9f6b72dd6df3d..f7f391399923a79db546ae7d3f9ed6d6ff3441bb 100644 (file)
@@ -7,7 +7,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: pg_operator.h,v 1.17 1997/10/25 05:31:55 thomas Exp $
+ * $Id: pg_operator.h,v 1.18 1997/11/13 03:23:05 momjian Exp $
  *
  * NOTES
  *   the genbki.sh script reads this file and generates .bki
@@ -89,565 +89,1054 @@ typedef FormData_pg_operator *OperatorTupleForm;
  */
 
 DATA(insert OID = 58 ( "<"        PGUID 0 b t f  16  16  16  85   91  0  0 boollt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 59 ( ">"        PGUID 0 b t f  16  16  16  85   91  0  0 boolgt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 85 ( "<>"       PGUID 0 b t f  16  16  16  85   91  0  0 boolne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 91 ( "="        PGUID 0 b t t  16  16  16  91   85  0  0 booleq eqsel eqjoinsel ));
+DESCR("");
 #define BooleanEqualOperator   91
 
 DATA(insert OID = 92 ( "="        PGUID 0 b t t  18  18  16  92 630  631 631 chareq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 93 ( "="        PGUID 0 b t t  19  19  16  93  643 660 660 nameeq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 94 ( "="        PGUID 0 b t t  21  21  16  94 519 95 95 int2eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 95 ( "<"        PGUID 0 b t f  21  21  16 520 524 0 0 int2lt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 96 ( "="        PGUID 0 b t t  23  23  16  96 518 97 97 int4eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 97 ( "<"        PGUID 0 b t f  23  23  16 521 525 0 0 int4lt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 98 ( "="        PGUID 0 b t t  25  25  16  98 531 664 664 texteq eqsel eqjoinsel ));
+DESCR("");
 
 DATA(insert OID = 1267 (  "="       PGUID 0 b t t  20  20  16  1267 644 645 645 char16eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 329 (  "="      PGUID 0 b t t  1000  1000  16  329 0  0  0 array_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 349 (  "="      PGUID 0 b t t  1001  1001  16  349 0  0  0 array_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 374 (  "="      PGUID 0 b t t  1002  1002  16  374 0  0  0 array_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 375 (  "="      PGUID 0 b t t  1003  1003  16  375 0  0  0 array_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 376 (  "="      PGUID 0 b t t  1004  1004  16  376 0  0  0 array_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 377 (  "="      PGUID 0 b t t  1005  1005  16  377 0  0  0 array_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 378 (  "="      PGUID 0 b t t  1006  1006  16  378 0  0  0 array_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 379 (  "="      PGUID 0 b t t  1007  1007  16  379 0  0  0 array_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 380 (  "="      PGUID 0 b t t  1008  1008  16  380 0  0  0 array_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 381 (  "="      PGUID 0 b t t  1009  1009  16  381 0  0  0 array_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 382 (  "="      PGUID 0 b t t  1028  1028  16  382 0  0  0 array_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 383 (  "="      PGUID 0 b t t  1010  1010  16  383 0  0  0 array_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 384 (  "="      PGUID 0 b t t  1011  1011  16  384 0  0  0 array_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 385 (  "="      PGUID 0 b t t  1012  1012  16  385 0  0  0 array_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 386 (  "="      PGUID 0 b t t  1013  1013  16  386 0  0  0 array_eq eqsel eqjoinsel ));
+DESCR("");
 /*
 DATA(insert OID = 387 (  "="      PGUID 0 b t t  1014  1014  16  387 0  0  0 array_eq eqsel eqjoinsel ));
+DESCR("");
 */
 DATA(insert OID = 388 (  "="      PGUID 0 b t t  1015  1015  16  388 0  0  0 array_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 389 (  "="      PGUID 0 b t t  1016  1016  16  389 0  0  0 array_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 390 (  "="      PGUID 0 b t t  1017  1017  16  390 0  0  0 array_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 391 (  "="      PGUID 0 b t t  1018  1018  16  391 0  0  0 array_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 392 (  "="      PGUID 0 b t t  1019  1019  16  392 0  0  0 array_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 393 (  "="      PGUID 0 b t t  1020  1020  16  393 0  0  0 array_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 394 (  "="      PGUID 0 b t t  1021  1021  16  394 0  0  0 array_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 395 (  "="      PGUID 0 b t t  1022  1022  16  395 0  0  0 array_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 396 (  "="      PGUID 0 b t t  1023  1023  16  396 0  0  0 array_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 397 (  "="      PGUID 0 b t t  1024  1024  16  397 0  0  0 array_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 398 (  "="      PGUID 0 b t t  1025  1025  16  398 0  0  0 array_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 399 (  "="      PGUID 0 b t t  1026  1026  16  399 0  0  0 array_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 400 (  "="      PGUID 0 b t t  1027  1027  16  400 0  0  0 array_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 401 (  "="      PGUID 0 b t t  1034  1034  16  401 0  0  0 array_eq eqsel eqjoinsel ));
+DESCR("");
 
 DATA(insert OID = 412 (  "="      PGUID 0 b t t  409  409  16  412 415 418 418 char2eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 413 (  "="      PGUID 0 b t t  410  410  16  413 416 419 419 char4eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 414 (  "="      PGUID 0 b t t  411  411  16  414 417 420 420 char8eq eqsel eqjoinsel ));
+DESCR("");
 
 DATA(insert OID = 415 (  "<>"     PGUID 0 b t f  409  409  16 415 412  0 0 char2ne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 416 (  "<>"     PGUID 0 b t f  410  410  16 416 413  0 0 char4ne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 417 (  "<>"     PGUID 0 b t f  411  411  16 417 414  0 0 char8ne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 418 (  "<"      PGUID 0 b t f  409  409  16 460 463  0 0 char2lt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 419 (  "<"      PGUID 0 b t f  410  410  16 461 464  0 0 char4lt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 420 (  "<"      PGUID 0 b t f  411  411  16 462 465  0 0 char8lt intltsel intltjoinsel ));
+DESCR("");
 
 DATA(insert OID = 457 (  "<="     PGUID 0 b t f  409  409  16 463 460  0 0 char2le intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 458 (  "<="     PGUID 0 b t f  410  410  16 464 461  0 0 char4le intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 459 (  "<="     PGUID 0 b t f  411  411  16 465 462  0 0 char8le intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 460 (  ">"      PGUID 0 b t f  409  409  16 418 457  0 0 char2gt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 461 (  ">"      PGUID 0 b t f  410  410  16 419 458  0 0 char4gt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 462 (  ">"      PGUID 0 b t f  411  411  16 420 459  0 0 char8gt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 463 (  ">="     PGUID 0 b t f  409  409  16 457 418  0 0 char2ge intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 464 (  ">="     PGUID 0 b t f  410  410  16 458 418  0 0 char4ge intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 465 (  ">="     PGUID 0 b t f  411  411  16 459 420  0 0 char8ge intltsel intltjoinsel ));
+DESCR("");
 
 DATA(insert OID = 485 (  "<<"     PGUID 0 b t f 604 604  16   0   0   0   0 poly_left intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 486 (  "&<"     PGUID 0 b t f 604 604  16   0   0   0   0 poly_overleft intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 487 (  "&>"     PGUID 0 b t f 604 604  16   0   0   0   0 poly_overright intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 488 (  ">>"     PGUID 0 b t f 604 604  16   0   0   0   0 poly_right intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 489 (  "@"      PGUID 0 b t f 604 604  16 490   0   0   0 poly_contained intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 490 (  "~"      PGUID 0 b t f 604 604  16 489   0   0   0 poly_contain intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 491 (  "~="     PGUID 0 b t f 604 604  16 491   0   0   0 poly_same intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 492 (  "&&"     PGUID 0 b t f 604 604  16   0   0   0   0 poly_overlap intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 493 (  "<<"     PGUID 0 b t f 603 603  16   0   0   0   0 box_left intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 494 (  "&<"     PGUID 0 b t f 603 603  16   0   0   0   0 box_overleft intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 495 (  "&>"     PGUID 0 b t f 603 603  16   0   0   0   0 box_overright intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 496 (  ">>"     PGUID 0 b t f 603 603  16   0   0   0   0 box_right intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 497 (  "@"      PGUID 0 b t f 603 603  16 498   0   0   0 box_contained intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 498 (  "~"      PGUID 0 b t f 603 603  16 497   0   0   0 box_contain intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 499 (  "~="     PGUID 0 b t f 603 603  16 499   0   0   0 box_same intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 500 (  "&&"     PGUID 0 b t f 603 603  16   0   0   0   0 box_overlap intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 501 (  ">="     PGUID 0 b t f 603 603  16 505 504   0   0 box_ge areasel areajoinsel ));
+DESCR("");
 DATA(insert OID = 502 (  ">"      PGUID 0 b t f 603 603  16 504 505   0   0 box_gt areasel areajoinsel ));
+DESCR("");
 DATA(insert OID = 503 (  "="      PGUID 0 b t t 603 603  16 503   0   0   0 box_eq areasel areajoinsel ));
+DESCR("");
 DATA(insert OID = 504 (  "<"      PGUID 0 b t f 603 603  16 502 501   0   0 box_lt areasel areajoinsel ));
+DESCR("");
 DATA(insert OID = 505 (  "<="     PGUID 0 b t f 603 603  16 501 502   0   0 box_le areasel areajoinsel ));
+DESCR("");
 DATA(insert OID = 506 (  ">^"     PGUID 0 b t f 600 600  16   0   0   0   0 point_above intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 507 (  "<<"     PGUID 0 b t f 600 600  16   0   0   0   0 point_left intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 508 (  ">>"     PGUID 0 b t f 600 600  16   0   0   0   0 point_right intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 509 (  "<^"     PGUID 0 b t f 600 600  16   0   0   0   0 point_below intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 510 (  "~="     PGUID 0 b t f 600 600  16 510   0   0   0 point_eq intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 511 (  "@"      PGUID 0 b t f 600 603  16   0   0   0   0 on_pb intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 512 (  "@"      PGUID 0 b t f 600 602  16   0   0   0   0 on_ppath intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 513 (  "@@"     PGUID 0 l t f   0 603 600   0   0   0   0 box_center intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 514 (  "*"      PGUID 0 b t f  23  23  23 514   0   0   0 int4mul intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 515 (  "!"      PGUID 0 r t f  23   0  23   0   0   0   0 int4fac intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 516 (  "!!"     PGUID 0 l t f   0  23  23   0   0   0   0 int4fac intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 517 (  "<->"    PGUID 0 b t f 600 600 701 517   0   0   0 point_distance intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 518 (  "<>"     PGUID 0 b t f  23  23  16 518  96  0  0 int4ne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 519 (  "<>"     PGUID 0 b t f  21  21  16 519  94  0  0 int2ne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 520 (  ">"      PGUID 0 b t f  21  21  16  95   0  0  0 int2gt intgtsel intgtjoinsel ));
+DESCR("");
 DATA(insert OID = 521 (  ">"      PGUID 0 b t f  23  23  16  97   0  0  0 int4gt intgtsel intgtjoinsel ));
+DESCR("");
 DATA(insert OID = 522 (  "<="     PGUID 0 b t f  21  21  16 524 520  0  0 int2le intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 523 (  "<="     PGUID 0 b t f  23  23  16 525 521  0  0 int4le intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 524 (  ">="     PGUID 0 b t f  21  21  16 522  95  0  0 int2ge intgtsel intgtjoinsel ));
+DESCR("");
 DATA(insert OID = 525 (  ">="     PGUID 0 b t f  23  23  16 523  97  0  0 int4ge intgtsel intgtjoinsel ));
+DESCR("");
 DATA(insert OID = 526 (  "*"      PGUID 0 b t f  21  21  21 526   0  0  0 int2mul intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 527 (  "/"      PGUID 0 b t f  21  21  21   0   0  0  0 int2div intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 528 (  "/"      PGUID 0 b t f  23  23  23   0   0  0  0 int4div intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 529 (  "%"      PGUID 0 b t f  21  21  21   6   0  0  0 int2mod intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 530 (  "%"      PGUID 0 b t f  23  23  23   6   0  0  0 int4mod intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 531 (  "<>"     PGUID 0 b t f  25  25  16 531  98   0   0 textne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 532 (  "="      PGUID 0 b t t  21  23  16 533 538  95  97 int24eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 533 (  "="      PGUID 0 b t t  23  21  16 532 539  97  95 int42eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 534 (  "<"      PGUID 0 b t f  21  23  16 537 542  0  0 int24lt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 535 (  "<"      PGUID 0 b t f  23  21  16 536 543  0  0 int42lt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 536 (  ">"      PGUID 0 b t f  21  23  16 535 540  0  0 int24gt intgtsel intgtjoinsel ));
+DESCR("");
 DATA(insert OID = 537 (  ">"      PGUID 0 b t f  23  21  16 534 541  0  0 int42gt intgtsel intgtjoinsel ));
+DESCR("");
 DATA(insert OID = 538 (  "<>"     PGUID 0 b t f  21  23  16 539 532  0  0 int24ne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 539 (  "<>"     PGUID 0 b t f  23  21  16 538 533  0  0 int42ne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 540 (  "<="     PGUID 0 b t f  21  23  16 543 536  0  0 int24le intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 541 (  "<="     PGUID 0 b t f  23  21  16 542 537  0  0 int42le intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 542 (  ">="     PGUID 0 b t f  21  23  16 541 534  0  0 int24ge intgtsel intgtjoinsel ));
+DESCR("");
 DATA(insert OID = 543 (  ">="     PGUID 0 b t f  23  21  16 540 535  0  0 int42ge intgtsel intgtjoinsel ));
+DESCR("");
 DATA(insert OID = 544 (  "*"      PGUID 0 b t f  21  23  23 545   0  0  0 int24mul intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 545 (  "*"      PGUID 0 b t f  23  21  23 544   0  0  0 int42mul intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 546 (  "/"      PGUID 0 b t f  21  23  23   0   0  0  0 int24div intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 547 (  "/"      PGUID 0 b t f  23  21  23   0   0  0  0 int42div intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 548 (  "%"      PGUID 0 b t f  21  23  23   6   0  0  0 int24mod intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 549 (  "%"      PGUID 0 b t f  23  21  23   6   0  0  0 int42mod intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 550 (  "+"      PGUID 0 b t f  21  21  21 550   0   0   0 int2pl intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 551 (  "+"      PGUID 0 b t f  23  23  23 551   0   0   0 int4pl intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 552 (  "+"      PGUID 0 b t f  21  23  23 553   0   0   0 int24pl intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 553 (  "+"      PGUID 0 b t f  23  21  23 552   0   0   0 int42pl intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 554 (  "-"      PGUID 0 b t f  21  21  21   0   0   0   0 int2mi intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 555 (  "-"      PGUID 0 b t f  23  23  23   0   0   0   0 int4mi intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 556 (  "-"      PGUID 0 b t f  21  23  23   0   0   0   0 int24mi intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 557 (  "-"      PGUID 0 b t f  23  21  23   0   0   0   0 int42mi intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 558 (  "-"      PGUID 0 l t f   0  23  23   0   0   0   0 int4um intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 559 (  "-"      PGUID 0 l t f   0  21  21   0   0   0   0 int2um intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 560 (  "="      PGUID 0 b t t 702 702  16 560 561 562 562 abstimeeq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 561 (  "<>"     PGUID 0 b t f 702 702  16 561 560 0 0 abstimene neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 562 (  "<"      PGUID 0 b t f 702 702  16 563 565 0 0 abstimelt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 563 (  ">"      PGUID 0 b t f 702 702  16 562 564 0 0 abstimegt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 564 (  "<="     PGUID 0 b t f 702 702  16 565 563 0 0 abstimele intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 565 (  ">="     PGUID 0 b t f 702 702  16 564 562 0 0 abstimege intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 566 (  "="      PGUID 0 b t t 703 703  16 566 567 568 568 reltimeeq - - ));
+DESCR("");
 DATA(insert OID = 567 (  "<>"     PGUID 0 b t f 703 703  16 567 566 0 0 reltimene - - ));
+DESCR("");
 DATA(insert OID = 568 (  "<"      PGUID 0 b t f 703 703  16 569 571 0 0 reltimelt - - ));
+DESCR("");
 DATA(insert OID = 569 (  ">"      PGUID 0 b t f 703 703  16 568 570 0 0 reltimegt - - ));
+DESCR("");
 DATA(insert OID = 570 (  "<="     PGUID 0 b t f 703 703  16 571 569 0 0 reltimele - - ));
+DESCR("");
 DATA(insert OID = 571 (  ">="     PGUID 0 b t f 703 703  16 570 568 0 0 reltimege - - ));
+DESCR("");
 DATA(insert OID = 572 (  "~="     PGUID 0 b t t 704 704  16 572   0   0   0 intervalsame - - ));
+DESCR("");
 DATA(insert OID = 573 (  "<<"     PGUID 0 b t f 704 704  16   0   0   0   0 intervalct - - ));
+DESCR("");
 DATA(insert OID = 574 (  "&&"     PGUID 0 b t f 704 704  16   0   0   0   0 intervalov - - ));
+DESCR("");
 DATA(insert OID = 575 (  "#="     PGUID 0 b t f 704 703  16   0 576   0 568 intervalleneq - - ));
+DESCR("");
 DATA(insert OID = 576 (  "#<>"    PGUID 0 b t f 704 703  16   0 575   0 568 intervallenne - - ));
+DESCR("");
 DATA(insert OID = 577 (  "#<"     PGUID 0 b t f 704 703  16   0 580   0 568 intervallenlt - - ));
+DESCR("");
 DATA(insert OID = 578 (  "#>"     PGUID 0 b t f 704 703  16   0 579   0 568 intervallengt - - ));
+DESCR("");
 DATA(insert OID = 579 (  "#<="    PGUID 0 b t f 704 703  16   0 578   0 568 intervallenle - - ));
+DESCR("");
 DATA(insert OID = 580 (  "#>="    PGUID 0 b t f 704 703  16   0 577   0 568 intervallenge - - ));
+DESCR("");
 DATA(insert OID = 581 (  "+"      PGUID 0 b t f 702 703 702 581   0 0 0 timepl - - ));
+DESCR("");
 DATA(insert OID = 582 (  "-"      PGUID 0 b t f 702 703 702   0   0 0 0 timemi - - ));
+DESCR("");
 DATA(insert OID = 583 (  ""    PGUID 0 b t f 702 704  16   0   0 562   0 ininterval - - ));
+DESCR("");
 DATA(insert OID = 584 (  "-"      PGUID 0 l t f   0 700 700   0   0   0   0 float4um - - ));
+DESCR("");
 DATA(insert OID = 585 (  "-"      PGUID 0 l t f   0 701 701   0   0   0   0 float8um - - ));
+DESCR("");
 DATA(insert OID = 586 (  "+"      PGUID 0 b t f 700 700 700 586   0   0   0 float4pl - - ));
+DESCR("");
 DATA(insert OID = 587 (  "-"      PGUID 0 b t f 700 700 700   0   0   0   0 float4mi - - ));
+DESCR("");
 DATA(insert OID = 588 (  "/"      PGUID 0 b t f 700 700 700   0   0   0   0 float4div - - ));
+DESCR("");
 DATA(insert OID = 589 (  "*"      PGUID 0 b t f 700 700 700 589   0   0   0 float4mul - - ));
+DESCR("");
 DATA(insert OID = 590 (  "@"      PGUID 0 l t f   0 700 700   0   0   0   0 float4abs - - ));
+DESCR("");
 DATA(insert OID = 591 (  "+"      PGUID 0 b t f 701 701 701 591   0   0   0 float8pl - - ));
+DESCR("");
 DATA(insert OID = 592 (  "-"      PGUID 0 b t f 701 701 701   0   0   0   0 float8mi - - ));
+DESCR("");
 DATA(insert OID = 593 (  "/"      PGUID 0 b t f 701 701 701   0   0   0   0 float8div - - ));
+DESCR("");
 DATA(insert OID = 594 (  "*"      PGUID 0 b t f 701 701 701 594   0   0   0 float8mul - - ));
+DESCR("");
 DATA(insert OID = 595 (  "@"      PGUID 0 l t f   0 701 701   0   0   0   0 float8abs - - ));
+DESCR("");
 DATA(insert OID = 596 (  "|/"     PGUID 0 l t f   0 701 701   0   0   0   0 dsqrt - - ));
+DESCR("");
 DATA(insert OID = 597 (  "||/"    PGUID 0 l t f   0 701 701   0   0   0   0 dcbrt - - ));
+DESCR("");
 DATA(insert OID = 598 (  "%"      PGUID 0 l t f   0 701 701   0   0   0   0 dtrunc - - ));
+DESCR("");
 DATA(insert OID = 599 (  "%"      PGUID 0 r t f 701   0 701   0   0   0   0 dround - - ));
+DESCR("");
 DATA(insert OID = 1282 (  ":"      PGUID 0 l t f   0 701 701   0   0   0   0 dexp - - ));
+DESCR("");
 DATA(insert OID = 1283 (  ";"      PGUID 0 l t f   0 701 701   0   0   0   0 dlog1 - - ));
+DESCR("");
 DATA(insert OID = 1284 (  "|"      PGUID 0 l t f   0 704 702   0   0   0   0 intervalstart - - ));
+DESCR("");
 DATA(insert OID = 606 (  "<#>"     PGUID 0 b t f 702 702 704   0   0   0   0 mktinterval - - ));
+DESCR("");
 DATA(insert OID = 607 (  "="      PGUID 0 b t t  26  26  16 607 608 97 97 oideq eqsel eqjoinsel ));
+DESCR("");
 #define OIDEqualOperator 607   /* XXX planner/prep/semanopt.c crock */
 DATA(insert OID = 608 (  "<>"     PGUID 0 b t f  26  26  16 608 607  0  0 oidne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 609 (  "<"      PGUID 0 b t f  26  26  16 610 612  0  0 int4lt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 610 (  ">"      PGUID 0 b t f  26  26  16 609 611  0  0 int4gt intgtsel intgtjoinsel ));
+DESCR("");
 DATA(insert OID = 611 (  "<="     PGUID 0 b t f  26  26  16 612 610  0  0 int4le intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 612 (  ">="     PGUID 0 b t f  26  26  16 611 609  0  0 int4ge intgtsel intgtjoinsel ));
+DESCR("");
 
 DATA(insert OID = 613 (  "<->"    PGUID 0 b t f 600 603 701   0   0  0  0 dist_pl - - ));
+DESCR("");
 DATA(insert OID = 614 (  "<->"    PGUID 0 b t f 600 601 701   0   0  0  0 dist_ps - - ));
+DESCR("");
 DATA(insert OID = 615 (  "<->"    PGUID 0 b t f 600 603 701   0   0  0  0 dist_pb - - ));
+DESCR("");
 DATA(insert OID = 616 (  "<->"    PGUID 0 b t f 601 628 701   0   0  0  0 dist_sl - - ));
+DESCR("");
 DATA(insert OID = 617 (  "<->"    PGUID 0 b t f 601 603 701   0   0  0  0 dist_sb - - ));
+DESCR("");
 DATA(insert OID = 618 (  "<->"    PGUID 0 b t f 600 602 701   0   0  0  0 dist_ppath - - ));
+DESCR("");
 
 DATA(insert OID = 619 (  "<"      PGUID 0 b t f 704 704  16   0   0  0  0 intervalct - - ));
+DESCR("");
 
 DATA(insert OID = 620 (  "="      PGUID 0 b t t  700  700  16 620 621  622 622 float4eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 621 (  "<>"     PGUID 0 b t f  700  700  16 621 620  0 0 float4ne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 622 (  "<"      PGUID 0 b t f  700  700  16 623 625  0 0 float4lt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 623 (  ">"      PGUID 0 b t f  700  700  16 622 624  0 0 float4gt intgtsel intgtjoinsel ));
+DESCR("");
 DATA(insert OID = 624 (  "<="     PGUID 0 b t f  700  700  16 625 623  0 0 float4le intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 625 (  ">="     PGUID 0 b t f  700  700  16 624 622  0 0 float4ge intgtsel intgtjoinsel ));
+DESCR("");
 DATA(insert OID = 626 (  "!!="    PGUID 0 b t f  23   19   16 0   0    0   0   int4notin "-"     "-"));
+DESCR("");
 DATA(insert OID = 627 (  "!!="    PGUID 0 b t f  26   19   16 0   0    0   0   oidnotin "-"     "-"));
+DESCR("");
 #define OIDNotInOperator 627   /* XXX planner/prep/semanopt.c crock */
 DATA(insert OID = 630 (  "<>"     PGUID 0 b t f  18  18  16 630  92  0 0 charne neqsel neqjoinsel ));
+DESCR("");
 
 DATA(insert OID = 631 (  "<"      PGUID 0 b t f  18  18  16 633 634  0 0 charlt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 632 (  "<="     PGUID 0 b t f  18  18  16 634 633  0 0 charle intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 633 (  ">"      PGUID 0 b t f  18  18  16 631 632  0 0 chargt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 634 (  ">="     PGUID 0 b t f  18  18  16 632 631  0 0 charge intltsel intltjoinsel ));
+DESCR("");
 
 DATA(insert OID = 635 (  "+"      PGUID 0 b t f  18  18  18 0 0  0 0 charpl eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 636 (  "-"      PGUID 0 b t f  18  18  18 0 0  0 0 charmi eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 637 (  "*"      PGUID 0 b t f  18  18  18 0 0  0 0 charmul eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 638 (  "/"      PGUID 0 b t f  18  18  18 0 0  0 0 chardiv eqsel eqjoinsel ));
+DESCR("");
 
 DATA(insert OID = 639 (  "~"      PGUID 0 b t f  19  25  16 0 640  0 0 nameregexeq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 640 (  "!~"     PGUID 0 b t f  19  25  16 0 639  0 0 nameregexne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 641 (  "~"      PGUID 0 b t f  25  25  16 0 642  0 0 textregexeq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 642 (  "!~"     PGUID 0 b t f  25  25  16 0 641  0 0 textregexne eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 643 (  "<>"     PGUID 0 b t f  19  19  16 643 93 0 0 namene neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 644 (  "<>"     PGUID 0 b t f  20  20  16 644 1267 0 0 char16ne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 645 (  "<"      PGUID 0 b t f  20  20  16 647 648  0 0 char16lt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 646 (  "<="     PGUID 0 b t f  20  20  16 648 647  0 0 char16le intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 647 (  ">"      PGUID 0 b t f  20  20  16 645 646  0 0 char16gt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 648 (  ">="     PGUID 0 b t f  20  20  16 646 645  0 0 char16ge intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 649 (  "~"      PGUID 0 b t f  20  25  16 0 650  0 0 char16regexeq intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 650 (  "!~"     PGUID 0 b t f  20  25  16 650 0  0 0 char16regexne intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 651 (  "~~"     PGUID 0 b t f  20  25  16 0 651  0 0 char16like eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 652 (  "!~~"    PGUID 0 b t f  20  25  16 651 0  0 0 char16nlike neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 654 (  "||"     PGUID 0 b t f  25  25  25   0 0  0 0 textcat - - ));
+DESCR("");
 
 DATA(insert OID = 660 (  "<"      PGUID 0 b t f  19  19  16 662 663  0 0 namelt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 661 (  "<="     PGUID 0 b t f  19  19  16 663 662  0 0 namele intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 662 (  ">"      PGUID 0 b t f  19  19  16 660 661  0 0 namegt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 663 (  ">="     PGUID 0 b t f  19  19  16 661 660  0 0 namege intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 664 (  "<"      PGUID 0 b t f  25  25  16 666 667  0 0 text_lt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 665 (  "<="     PGUID 0 b t f  25  25  16 667 666  0 0 text_le intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 666 (  ">"      PGUID 0 b t f  25  25  16 664 665  0 0 text_gt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 667 (  ">="     PGUID 0 b t f  25  25  16 665 664  0 0 text_ge intltsel intltjoinsel ));
+DESCR("");
 
 DATA(insert OID = 670 (  "="      PGUID 0 b t f  701  701  16 670 671  0 0 float8eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 671 (  "<>"     PGUID 0 b t f  701  701  16 671 670  0 0 float8ne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 672 (  "<"      PGUID 0 b t f  701  701  16 674 675  0 0 float8lt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 673 (  "<="     PGUID 0 b t f  701  701  16 675 674  0 0 float8le intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 674 (  ">"      PGUID 0 b t f  701  701  16 672 673  0 0 float8gt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 675 (  ">="     PGUID 0 b t f  701  701  16 673 672  0 0 float8ge intltsel intltjoinsel ));
+DESCR("");
 
 DATA(insert OID = 676 (  "<"      PGUID 0 b t f  911  911  16 680 679  0 0 oidnamelt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 677 (  "<="     PGUID 0 b t f  911  911  16 679 680  0 0 oidnamele intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 678 (  "="      PGUID 0 b t f  911  911  16 678 681  0 0 oidnameeq intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 679 (  ">="     PGUID 0 b t f  911  911  16 677 676  0 0 oidnamege intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 680 (  ">"      PGUID 0 b t f  911  911  16 676 677  0 0 oidnamegt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 681 (  "<>"     PGUID 0 b t f  911  911  16 681 678  0 0 oidnamene intltsel intltjoinsel ));
+DESCR("");
 
 DATA(insert OID = 697 (  "~"      PGUID 0 b t f  411  25  16 0 698  0 0 char8regexeq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 698 (  "!~"     PGUID 0 b t f  411  25  16 0 697  0 0 char8regexne neqsel neqjoinsel ));
+DESCR("");
 
 DATA(insert OID = 706 (  "<->"    PGUID 0 b t f 603 603 701 706   0  0  0 box_distance intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 707 (  "<->"    PGUID 0 b t f 602 602 701 707   0  0  0 path_distance intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 708 (  "<->"    PGUID 0 b t f 628 628 701 708   0  0  0 line_distance intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 709 (  "<->"    PGUID 0 b t f 601 601 701 709   0  0  0 lseg_distance intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 712 (  "<->"    PGUID 0 b t f 604 604 701 712   0  0  0 poly_distance intltsel intltjoinsel ));
+DESCR("");
 
 /* add translation/rotation/scaling operators for geometric types. - thomas 97/05/10 */
 DATA(insert OID = 731 (  "+"      PGUID 0 b t f  600  600  600  731  0 0 0 point_add - - ));
+DESCR("");
 DATA(insert OID = 732 (  "-"      PGUID 0 b t f  600  600  600    0  0 0 0 point_sub - - ));
+DESCR("");
 DATA(insert OID = 733 (  "*"      PGUID 0 b t f  600  600  600  733  0 0 0 point_mul - - ));
+DESCR("");
 DATA(insert OID = 734 (  "/"      PGUID 0 b t f  600  600  600    0  0 0 0 point_div - - ));
+DESCR("");
 DATA(insert OID = 735 (  "+"      PGUID 0 b t f  602  602  602  735  0 0 0 path_add - - ));
+DESCR("");
 DATA(insert OID = 736 (  "+"      PGUID 0 b t f  602  600  602  736  0 0 0 path_add_pt - - ));
+DESCR("");
 DATA(insert OID = 737 (  "-"      PGUID 0 b t f  602  600  602    0  0 0 0 path_sub_pt - - ));
+DESCR("");
 DATA(insert OID = 738 (  "*"      PGUID 0 b t f  602  600  602  738  0 0 0 path_mul_pt - - ));
+DESCR("");
 DATA(insert OID = 739 (  "/"      PGUID 0 b t f  602  600  602    0  0 0 0 path_div_pt - - ));
+DESCR("");
 DATA(insert OID = 754 (  "@"      PGUID 0 b t f  600  602   16  755  0 0 0 pt_contained_path - - ));
+DESCR("");
 DATA(insert OID = 755 (  "~"      PGUID 0 b t f  602  600   16  754  0 0 0 path_contain_pt - - ));
+DESCR("");
 DATA(insert OID = 756 (  "@"      PGUID 0 b t f  600  604   16  757  0 0 0 pt_contained_poly - - ));
+DESCR("");
 DATA(insert OID = 757 (  "~"      PGUID 0 b t f  604  600   16  756  0 0 0 poly_contain_pt - - ));
+DESCR("");
 DATA(insert OID = 758 (  "@"      PGUID 0 b t f  600  718   16  759  0 0 0 pt_contained_circle - - ));
+DESCR("");
 DATA(insert OID = 759 (  "~"      PGUID 0 b t f  718  600   16  758  0 0 0 circle_contain_pt - - ));
+DESCR("");
 
 /* additional operators for geometric types - thomas 1997-07-09 */
 DATA(insert OID =  792 (  "="     PGUID 0 b t f  602  602  701  792  0 0 0 path_n_eq intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID =  793 (  "<"     PGUID 0 b t f  602  602  701  796  0 0 0 path_n_lt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID =  794 (  ">"     PGUID 0 b t f  602  602  701  795  0 0 0 path_n_gt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID =  795 (  "<="    PGUID 0 b t f  602  602  701  794  0 0 0 path_n_le intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID =  796 (  ">="    PGUID 0 b t f  602  602  701  793  0 0 0 path_n_ge intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID =  797 (  "#"     PGUID 0 l t f    0  602   23    0  0 0 0 path_npoints - - ));
+DESCR("");
 DATA(insert OID =  798 (  "?#"    PGUID 0 b t f  602  602   16    0  0 0 0 path_inter - - ));
+DESCR("");
 DATA(insert OID =  799 (  "??"    PGUID 0 l t f    0  602  701    0  0 0 0 path_length - - ));
+DESCR("");
 DATA(insert OID =  800 (  ">^"    PGUID 0 b t f  603  603   16    0  0 0 0 box_above intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID =  801 (  "<^"    PGUID 0 b t f  603  603   16    0  0 0 0 box_below intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID =  802 (  "?#"    PGUID 0 b t f  603  603   16    0  0 0 0 box_overlap - - ));
+DESCR("");
 DATA(insert OID =  803 (  "#"     PGUID 0 b t f  603  603  603    0  0 0 0 box_intersect - - ));
+DESCR("");
 DATA(insert OID =  804 (  "+"     PGUID 0 b t f  603  600  603  804  0 0 0 box_add - - ));
+DESCR("");
 DATA(insert OID =  805 (  "-"     PGUID 0 b t f  603  600  603    0  0 0 0 box_sub - - ));
+DESCR("");
 DATA(insert OID =  806 (  "*"     PGUID 0 b t f  603  600  603  806  0 0 0 box_mul - - ));
+DESCR("");
 DATA(insert OID =  807 (  "/"     PGUID 0 b t f  603  600  603    0  0 0 0 box_div - - ));
+DESCR("");
 DATA(insert OID =  808 (  "?-"    PGUID 0 b t f  600  600   16  808  0 0 0 point_horiz - - ));
+DESCR("");
 DATA(insert OID =  809 (  "?|"    PGUID 0 b t f  600  600   16  809  0 0 0 point_vert - - ));
+DESCR("");
 
 DATA(insert OID = 811 (  "="      PGUID 0 b t t 704 704  16 811   0   0   0 intervaleq - - ));
+DESCR("");
 DATA(insert OID = 812 (  "<>"     PGUID 0 b t t 704 704  16 812   0   0   0 intervalne - - ));
+DESCR("");
 DATA(insert OID = 813 (  "<"      PGUID 0 b t t 704 704  16 813   0   0   0 intervallt - - ));
+DESCR("");
 DATA(insert OID = 814 (  ">"      PGUID 0 b t t 704 704  16 814   0   0   0 intervalgt - - ));
+DESCR("");
 DATA(insert OID = 815 (  "<="     PGUID 0 b t t 704 704  16 815   0   0   0 intervalle - - ));
+DESCR("");
 DATA(insert OID = 816 (  ">="     PGUID 0 b t t 704 704  16 816   0   0   0 intervalge - - ));
+DESCR("");
 
 DATA(insert OID = 830 (  "<"      PGUID 0 b t f  810  810  16 834 833  0 0 oidint2lt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 831 (  "<="     PGUID 0 b t f  810  810  16 833 834  0 0 oidint2le intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 832 (  "="      PGUID 0 b t f  810  810  16 832 835  0 0 oidint2eq intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 833 (  ">="     PGUID 0 b t f  810  810  16 831 830  0 0 oidint2ge intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 834 (  ">"      PGUID 0 b t f  810  810  16 830 831  0 0 oidint2gt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 835 (  "<>"     PGUID 0 b t f  810  810  16 835 832  0 0 oidint2ne intltsel intltjoinsel ));
+DESCR("");
 
 DATA(insert OID = 839 (  "~"      PGUID 0 b t f  409  25  16 0 841  0 0 char2regexeq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 841 (  "!~"     PGUID 0 b t f  409  25  16 0 839  0 0 char2regexne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 840 (  "~"      PGUID 0 b t f  410  25  16 0 842  0 0 char4regexeq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 842 (  "!~"     PGUID 0 b t f  410  25  16 0 840  0 0 char4regexne neqsel neqjoinsel ));
+DESCR("");
 
 DATA(insert OID = 843 (  "*"      PGUID 0 b t f  790  700  790 845   0   0   0 cash_mul_flt4 - - ));
+DESCR("");
 DATA(insert OID = 844 (  "/"      PGUID 0 b t f  790  700  790   0   0   0   0 cash_div_flt4 - - ));
+DESCR("");
 DATA(insert OID = 845 (  "*"      PGUID 0 b t f  700  790  790 843   0   0   0 flt4_mul_cash - - ));
+DESCR("");
 
 DATA(insert OID = 900 (  "="      PGUID 0 b t t  790  790  16 900 901  902 902 cash_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 901 (  "<>"     PGUID 0 b t f  790  790  16 901 900  0 0 cash_ne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 902 (  "<"      PGUID 0 b t f  790  790  16 903 905  0 0 cash_lt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 903 (  ">"      PGUID 0 b t f  790  790  16 902 904  0 0 cash_gt intgtsel intgtjoinsel ));
+DESCR("");
 DATA(insert OID = 904 (  "<="     PGUID 0 b t f  790  790  16 905 903  0 0 cash_le intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 905 (  ">="     PGUID 0 b t f  790  790  16 904 902  0 0 cash_ge intgtsel intgtjoinsel ));
+DESCR("");
 DATA(insert OID = 906 (  "+"      PGUID 0 b t f  790  790  790 906   0   0   0 cash_pl - - ));
+DESCR("");
 DATA(insert OID = 907 (  "-"      PGUID 0 b t f  790  790  790   0   0   0   0 cash_mi - - ));
+DESCR("");
 DATA(insert OID = 908 (  "*"      PGUID 0 b t f  790  701  790 916   0   0   0 cash_mul_flt8 - - ));
+DESCR("");
 DATA(insert OID = 909 (  "/"      PGUID 0 b t f  790  701  790   0   0   0   0 cash_div_flt8 - - ));
+DESCR("");
 DATA(insert OID = 912 (  "*"      PGUID 0 b t f  790  23   790 917   0   0   0 cash_mul_int4 - - ));
+DESCR("");
 DATA(insert OID = 913 (  "/"      PGUID 0 b t f  790  23   790   0   0   0   0 cash_div_int4 - - ));
+DESCR("");
 DATA(insert OID = 914 (  "*"      PGUID 0 b t f  790  21   790 918   0   0   0 cash_mul_int2 - - ));
+DESCR("");
 DATA(insert OID = 915 (  "/"      PGUID 0 b t f  790  21   790   0   0   0   0 cash_div_int2 - - ));
+DESCR("");
 DATA(insert OID = 916 (  "*"      PGUID 0 b t f  701  790  790 908   0   0   0 flt8_mul_cash - - ));
+DESCR("");
 DATA(insert OID = 917 (  "*"      PGUID 0 b t f  23  790   790 912   0   0   0 int4_mul_cash - - ));
+DESCR("");
 DATA(insert OID = 918 (  "*"      PGUID 0 b t f  21  790   790 914   0   0   0 int2_mul_cash - - ));
+DESCR("");
 
 DATA(insert OID = 930 (  "<"      PGUID 0 b t f  910  910  16 934 933  0 0 oidint4lt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 931 (  "<="     PGUID 0 b t f  910  910  16 933 934  0 0 oidint4le intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 932 (  "="      PGUID 0 b t f  910  910  16 932 935  0 0 oidint4eq intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 933 (  ">="     PGUID 0 b t f  910  910  16 931 930  0 0 oidint4ge intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 934 (  ">"      PGUID 0 b t f  910  910  16 930 931  0 0 oidint4gt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 935 (  "<>"     PGUID 0 b t f  910  910  16 935 932  0 0 oidint4ne intltsel intltjoinsel ));
+DESCR("");
 
 DATA(insert OID = 965 (  "^"      PGUID 0 b t f  701  701  701 0 0 0 0 dpow - - ));
+DESCR("");
 DATA(insert OID = 966 (  "+"      PGUID 0 b t f 1034 1033 1034 0 0 0 0 aclinsert   intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 967 (  "-"      PGUID 0 b t f 1034 1033 1034 0 0 0 0 aclremove   intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 968 (  "~"      PGUID 0 b t f 1034 1033   16 0 0 0 0 aclcontains intltsel intltjoinsel ));
+DESCR("");
 
 /* additional geometric operators - thomas 1997-07-09 */
 DATA(insert OID =  969 (  "@@"    PGUID 0 l t f    0  601  600    0  0 0 0 lseg_center - - ));
+DESCR("");
 DATA(insert OID =  970 (  "@@"    PGUID 0 l t f    0  602  600    0  0 0 0 path_center - - ));
+DESCR("");
 DATA(insert OID =  971 (  "@@"    PGUID 0 l t f    0  604  600    0  0 0 0 poly_center - - ));
+DESCR("");
 
 DATA(insert OID =  974 (  "||"    PGUID 0 b t f 1042 1042 1042    0  0 0 0 textcat - - ));
+DESCR("");
 DATA(insert OID =  979 (  "||"    PGUID 0 b t f 1043 1043 1043    0  0 0 0 textcat - - ));
+DESCR("");
 
 DATA(insert OID = 1054 ( "="      PGUID 0 b t t 1042 1042   16 1054 1057 1058 1058 bpchareq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 1055 (  "~"     PGUID 0 b t f 1042   25   16    0 1056  0 0 textregexeq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 1056 ( "!~"     PGUID 0 b t f 1042   25   16    0 1055  0 0 textregexne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 1057 ( "<>"     PGUID 0 b t f 1042 1042   16 1057 1054  0 0 bpcharne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 1058 ( "<"      PGUID 0 b t f 1042 1042   16 1060 1061  0 0 bpcharlt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1059 ( "<="     PGUID 0 b t f 1042 1042   16 1061 1060  0 0 bpcharle intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1060 ( ">"      PGUID 0 b t f 1042 1042   16 1058 1059  0 0 bpchargt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1061 ( ">="     PGUID 0 b t f 1042 1042   16 1059 1058  0 0 bpcharge intltsel intltjoinsel ));
+DESCR("");
 
 DATA(insert OID = 1062 ( "="      PGUID 0 b t t 1043 1043  16  1062 1065 1066 1066 varchareq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 1063 (  "~"     PGUID 0 b t f 1043   25  16 0 1064  0 0 textregexeq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 1064 ( "!~"     PGUID 0 b t f 1043   25  16 0 1063  0 0 textregexne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 1065 ( "<>"     PGUID 0 b t f 1043 1043  16 1065 1062  0 0 varcharne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 1066 ( "<"      PGUID 0 b t f 1043 1043  16 1068 1069  0 0 varcharlt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1067 ( "<="     PGUID 0 b t f 1043 1043  16 1069 1068  0 0 varcharle intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1068 ( ">"      PGUID 0 b t f 1043 1043  16 1066 1067  0 0 varchargt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1069 ( ">="     PGUID 0 b t f 1043 1043  16 1067 1066  0 0 varcharge intltsel intltjoinsel ));
+DESCR("");
 
 /* date operators */
 DATA(insert OID = 1093 ( "="      PGUID 0 b t t  1082  1082   16 1093 1094 1095 1095 date_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 1094 ( "<>"     PGUID 0 b t f  1082  1082   16 1094 1093  0 0 date_ne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 1095 ( "<"      PGUID 0 b t f  1082  1082   16 1097 1098  0 0 date_lt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1096 ( "<="     PGUID 0 b t f  1082  1082   16 1098 1097  0 0 date_le intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1097 ( ">"      PGUID 0 b t f  1082  1082   16 1095 1096  0 0 date_gt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1098 ( ">="     PGUID 0 b t f  1082  1082   16 1096 1065  0 0 date_ge intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1099 ( "-"      PGUID 0 b t f  1082  1082   23 0 0 0 0 date_mi - - ));
+DESCR("");
 DATA(insert OID = 1100 ( "+"      PGUID 0 b t f  1082    23 1082 0 0 0 0 date_pli - - ));
+DESCR("");
 DATA(insert OID = 1101 ( "-"      PGUID 0 b t f  1082    23 1082 0 0 0 0 date_mii - - ));
+DESCR("");
 
 /* time operators */
 DATA(insert OID = 1108 ( "="      PGUID 0 b t t  1083  1083  16 1108 1109 1110 1110 time_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 1109 ( "<>"     PGUID 0 b t f  1083  1083  16 1109 1108  0 0 time_ne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 1110 ( "<"      PGUID 0 b t f  1083  1083  16 1112 1113  0 0 time_lt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1111 ( "<="     PGUID 0 b t f  1083  1083  16 1113 1112  0 0 time_le intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1112 ( ">"      PGUID 0 b t f  1083  1083  16 1110 1111  0 0 time_gt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1113 ( ">="     PGUID 0 b t f  1083  1083  16 1111 1065  0 0 time_ge intltsel intltjoinsel ));
+DESCR("");
 
 /* datetime operators */
 /* name, owner, prec, kind, isleft, canhash, left, right, result, com, negate, lsortop, rsortop, oprcode, operrest, oprjoin */
 DATA(insert OID = 1320 (  "="     PGUID 0 b t f 1184 1184   16 1320 1321 1322 1322 datetime_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 1321 (  "<>"    PGUID 0 b t f 1184 1184   16 1321 1320 0 0 datetime_ne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 1322 (  "<"     PGUID 0 b t f 1184 1184   16 1325 1325 0 0 datetime_lt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1323 (  "<="    PGUID 0 b t f 1184 1184   16 1324 1324 0 0 datetime_le intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1324 (  ">"     PGUID 0 b t f 1184 1184   16 1323 1323 0 0 datetime_gt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1325 (  ">="    PGUID 0 b t f 1184 1184   16 1322 1322 0 0 datetime_ge intltsel intltjoinsel ));
+DESCR("");
 
 DATA(insert OID = 1327 (  "+"     PGUID 0 b t f 1184 1186 1184 1327    0 0 0 datetime_pl_span - - ));
+DESCR("");
 DATA(insert OID = 1328 (  "-"     PGUID 0 b t f 1184 1184 1186    0    0 0 0 datetime_mi - - ));
+DESCR("");
 DATA(insert OID = 1329 (  "-"     PGUID 0 b t f 1184 1186 1184    0    0 0 0 datetime_mi_span - - ));
+DESCR("");
 
 /* timespan operators */
 DATA(insert OID = 1330 (  "="     PGUID 0 b t f 1186 1186   16 1330 1331 1332 1332 timespan_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 1331 (  "<>"    PGUID 0 b t f 1186 1186   16 1331 1330 0 0 timespan_ne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 1332 (  "<"     PGUID 0 b t f 1186 1186   16 1335 1335 0 0 timespan_lt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1333 (  "<="    PGUID 0 b t f 1186 1186   16 1334 1334 0 0 timespan_le intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1334 (  ">"     PGUID 0 b t f 1186 1186   16 1333 1333 0 0 timespan_gt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1335 (  ">="    PGUID 0 b t f 1186 1186   16 1332 1332 0 0 timespan_ge intltsel intltjoinsel ));
+DESCR("");
 
 DATA(insert OID = 1336 (  "-"     PGUID 0 l t f    0 1186 1186    0    0 0 0 timespan_um 0 0 ));
+DESCR("");
 DATA(insert OID = 1337 (  "+"     PGUID 0 b t f 1186 1186 1186 1337    0 0 0 timespan_pl - - ));
+DESCR("");
 DATA(insert OID = 1338 (  "-"     PGUID 0 b t f 1186 1186 1186    0    0 0 0 timespan_mi - - ));
+DESCR("");
 
 /* float48 operators */
 DATA(insert OID = 1116 (  "+"      PGUID 0 b t f 700 701 701 1116   0   0   0 float48pl - - ));
+DESCR("");
 DATA(insert OID = 1117 (  "-"      PGUID 0 b t f 700 701 701    0   0   0   0 float48mi - - ));
+DESCR("");
 DATA(insert OID = 1118 (  "/"      PGUID 0 b t f 700 701 701    0   0   0   0 float48div - - ));
+DESCR("");
 DATA(insert OID = 1119 (  "*"      PGUID 0 b t f 700 701 701 1119   0   0   0 float48mul - - ));
+DESCR("");
 DATA(insert OID = 1120 (  "="      PGUID 0 b t t  700  701  16 1120 1121  1122 1122 float48eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 1121 (  "<>"     PGUID 0 b t f  700  701  16 1121 1120  0 0 float48ne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 1122 (  "<"      PGUID 0 b t f  700  701  16 1123 1125  0 0 float48lt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1123 (  ">"      PGUID 0 b t f  700  701  16 1122 1124  0 0 float48gt intgtsel intgtjoinsel ));
+DESCR("");
 DATA(insert OID = 1124 (  "<="     PGUID 0 b t f  700  701  16 1125 1123  0 0 float48le intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1125 (  ">="     PGUID 0 b t f  700  701  16 1124 1122  0 0 float48ge intgtsel intgtjoinsel ));
+DESCR("");
 
 /* float84 operators */
 DATA(insert OID = 1126 (  "+"      PGUID 0 b t f 701 700 701 1126   0   0   0 float84pl - - ));
+DESCR("");
 DATA(insert OID = 1127 (  "-"      PGUID 0 b t f 701 700 701    0   0   0   0 float84mi - - ));
+DESCR("");
 DATA(insert OID = 1128 (  "/"      PGUID 0 b t f 701 700 701    0   0   0   0 float84div - - ));
+DESCR("");
 DATA(insert OID = 1129 (  "*"      PGUID 0 b t f 701 700 701 1129   0   0   0 float84mul - - ));
+DESCR("");
 DATA(insert OID = 1130 (  "="      PGUID 0 b t t  701  700  16 1130 1131  1132 1132 float84eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 1131 (  "<>"     PGUID 0 b t f  701  700  16 1131 1130  0 0 float84ne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 1132 (  "<"      PGUID 0 b t f  701  700  16 1133 1135  0 0 float84lt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1133 (  ">"      PGUID 0 b t f  701  700  16 1132 1134  0 0 float84gt intgtsel intgtjoinsel ));
+DESCR("");
 DATA(insert OID = 1134 (  "<="     PGUID 0 b t f  701  700  16 1135 1133  0 0 float84le intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1135 (  ">="     PGUID 0 b t f  701  700  16 1134 1132  0 0 float84ge intgtsel intgtjoinsel ));
+DESCR("");
 
 /* int4 and oid equality */
 DATA(insert OID = 1136 (  "="      PGUID 0 b t t 23 26 16 1137 0 0 0 int4eqoid eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 1137 (  "="      PGUID 0 b t t 26 23 16 1136 0 0 0 oideqint4 eqsel eqjoinsel ));
+DESCR("");
 
 /* LIKE hacks by Keith Parks. */
 DATA(insert OID = 1201 (  "~~"   PGUID 0 b t f  409  25  16 0 1202 0 0 char2like eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 1202 (  "!~~"   PGUID 0 b t f  409  25  16 0 1201 0 0 char2nlike neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 1203 (  "~~"   PGUID 0 b t f  410  25  16 0 1204 0 0 char4like eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 1204 (  "!~~"   PGUID 0 b t f  410  25  16 0 1203 0 0 char4nlike neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 1205 (  "~~"   PGUID 0 b t f  411  25  16 0 1206 0 0 char8like eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 1206 (  "!~~"   PGUID 0 b t f  411  25  16 0 1205 0 0 char8nlike neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 1207 (  "~~"   PGUID 0 b t f  19   25  16 0 1208 0 0 namelike eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 1208 (  "!~~"   PGUID 0 b t f  19   25  16 0 1207 0 0 namenlike neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 1209 (  "~~"   PGUID 0 b t f  25   25  16 0 1210 0 0 textlike eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 1210 (  "!~~"   PGUID 0 b t f  25   25  16 0 1209 0 0 textnlike neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 1211 (  "~~"   PGUID 0 b t f  1042 25  16 0 1212 0 0 textlike eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 1212 (  "!~~"   PGUID 0 b t f  1042 25  16 0 1211 0 0 textnlike neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 1213 (  "~~"   PGUID 0 b t f  1043 25  16 0 1214 0 0 textlike eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 1214 (  "!~~"   PGUID 0 b t f  1043 25  16 0 1213 0 0 textnlike neqsel neqjoinsel ));
+DESCR("");
 
 /* case-insensitive LIKE hacks */
 DATA(insert OID = 1220 (  "~*"      PGUID 0 b t f  409  25  16 0 1221  0 0 char2icregexeq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 1221 (  "!~*"         PGUID 0 b t f  409  25  16 0 1220  0 0 char2icregexne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 1222 (  "~*"      PGUID 0 b t f  410  25  16 0 1223  0 0 char4icregexeq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 1223 (  "!~*"         PGUID 0 b t f  410  25  16 0 1222  0 0 char4icregexne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 1224 (  "~*"      PGUID 0 b t f  411  25  16 0 1225  0 0 char8icregexeq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 1225 (  "!~*"         PGUID 0 b t f  411  25  16 0 1224  0 0 char8icregexne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 1226 (  "~*"      PGUID 0 b t f  19  25  16 0 1227  0 0 nameicregexeq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 1227 (  "!~*"         PGUID 0 b t f  19  25  16 0 1226  0 0 nameicregexne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 1228 (  "~*"      PGUID 0 b t f  25  25  16 0 1229  0 0 texticregexeq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 1229 (  "!~*"         PGUID 0 b t f  25  25  16 0 1228  0 0 texticregexne eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 1230 (  "~*"      PGUID 0 b t f  20  25  16 0 1231  0 0 char16icregexeq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 1231 (  "!~*"         PGUID 0 b t f  20  25  16 0 1230  0 0 char16icregexne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 1232 (  "~*"     PGUID 0 b t f  1043  25  16 0 1233  0 0 texticregexeq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 1233 ( "!~*"     PGUID 0 b t f  1043  25  16 0 1232  0 0 texticregexne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 1234 (  "~*"     PGUID 0 b t f  1042  25  16 0 1235  0 0 texticregexeq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 1235 ( "!~*"     PGUID 0 b t f  1042  25  16 0 1234  0 0 texticregexne neqsel neqjoinsel ));
+DESCR("");
 
 DATA(insert OID = 1300 (  "="      PGUID 0 b t t  1296 1296 16 1300 1301 1302 1302 timestampeq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 1301 (  "<>"     PGUID 0 b t f  1296 1296 16 1301 1300 0 0 timestampne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 1302 (  "<"      PGUID 0 b t f  1296 1296 16 1303 1305 0 0 timestamplt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1303 (  ">"      PGUID 0 b t f  1296 1296 16 1302 1304 0 0 timestampgt intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1304 (  "<="     PGUID 0 b t f  1296 1296 16 1305 1303 0 0 timestample intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1305 (  ">="     PGUID 0 b t f  1296 1296 16 1304 1302 0 0 timestampge intltsel intltjoinsel ));
+DESCR("");
 
 /* additional geometric operators - thomas 97/04/18 */
 DATA(insert OID = 1420 (  "@@"   PGUID 0 l t f    0  718  600    0    0    0    0 circle_center - - ));
+DESCR("");
 DATA(insert OID = 1500 (  "="    PGUID 0 b t t  718  718   16 1500 1501 1502 1502 circle_eq eqsel eqjoinsel ));
+DESCR("");
 DATA(insert OID = 1501 (  "<>"   PGUID 0 b t f  718  718   16 1501 1500    0    0 circle_ne neqsel neqjoinsel ));
+DESCR("");
 DATA(insert OID = 1502 (  "<"    PGUID 0 b t f  718  718   16    0    0    0    0 circle_lt areasel areajoinsel ));
+DESCR("");
 DATA(insert OID = 1503 (  ">"    PGUID 0 b t f  718  718   16    0    0    0    0 circle_gt areasel areajoinsel ));
+DESCR("");
 DATA(insert OID = 1504 (  "<="   PGUID 0 b t f  718  718   16    0    0    0    0 circle_le areasel areajoinsel ));
+DESCR("");
 DATA(insert OID = 1505 (  ">="   PGUID 0 b t f  718  718   16    0    0    0    0 circle_ge areasel areajoinsel ));
+DESCR("");
 
 DATA(insert OID = 1506 (  "<<"   PGUID 0 b t f  718  718   16    0    0    0    0 circle_left intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1507 (  "&<"   PGUID 0 b t f  718  718   16    0    0    0    0 circle_overleft intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1508 (  "&>"   PGUID 0 b t f  718  718   16    0    0    0    0 circle_overright intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1509 (  ">>"   PGUID 0 b t f  718  718   16    0    0    0    0 circle_right intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1510 (  "@"    PGUID 0 b t f  718  718   16 1511    0    0    0 circle_contained intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1511 (  "~"    PGUID 0 b t f  718  718   16 1510    0    0    0 circle_contain intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1512 (  "~="   PGUID 0 b t f  718  718   16 1512    0    0    0 circle_same intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1513 (  "&&"   PGUID 0 b t f  718  718   16    0    0    0    0 circle_overlap intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1514 (  ">^"   PGUID 0 b t f  718  718   16    0    0    0    0 circle_above intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1515 (  "<^"   PGUID 0 b t f  718  718   16    0    0    0    0 circle_below intltsel intltjoinsel ));
+DESCR("");
 
 DATA(insert OID = 1516 (  "+"    PGUID 0 b t f  718  600  718 1516    0    0    0 circle_add_pt - - ));
+DESCR("");
 DATA(insert OID = 1517 (  "-"    PGUID 0 b t f  718  600  718    0    0    0    0 circle_sub_pt - - ));
+DESCR("");
 DATA(insert OID = 1518 (  "*"    PGUID 0 b t f  718  600  718 1518    0    0    0 circle_mul_pt - - ));
+DESCR("");
 DATA(insert OID = 1519 (  "/"    PGUID 0 b t f  718  600  718    0    0    0    0 circle_div_pt - - ));
+DESCR("");
 
 DATA(insert OID = 1520 (  "<->"   PGUID 0 b t f  718  718  701 1520    0   0    0 circle_distance intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1521 (  "#"    PGUID 0 l t f    0  604   23    0    0    0    0 poly_npoints - - ));
+DESCR("");
 DATA(insert OID = 1522 (  "<->"   PGUID 0 b t f  600  718  701 1522    0   0    0 dist_pc intltsel intltjoinsel ));
+DESCR("");
 DATA(insert OID = 1523 (  "<->"   PGUID 0 b t f  718  604  701 1523    0   0    0 dist_cpoly intltsel intltjoinsel ));
+DESCR("");
 
 /* additional geometric operators - thomas 1997-07-09 */
 DATA(insert OID = 1524 (  "<->"   PGUID 0 b t f  628  603  701 1524  0 0 0 dist_lb - - ));
+DESCR("");
 
 DATA(insert OID = 1525 (  "?#"   PGUID 0 b t f  601  601   16 1525  0 0 0 lseg_intersect - - ));
+DESCR("");
 DATA(insert OID = 1526 (  "?||"   PGUID 0 b t f  601  601  16 1526  0 0 0 lseg_parallel - - ));
+DESCR("");
 DATA(insert OID = 1527 (  "?-|"   PGUID 0 b t f  601  601  16 1527  0 0 0 lseg_perp - - ));
+DESCR("");
 DATA(insert OID = 1528 (  "?-"   PGUID 0 l t f    0  601   16 1528  0 0 0 lseg_horizontal - - ));
+DESCR("");
 DATA(insert OID = 1529 (  "?|"   PGUID 0 l t f    0  601   16 1529  0 0 0 lseg_vertical - - ));
+DESCR("");
 DATA(insert OID = 1535 (  "="    PGUID 0 b t f  601  601   16 1535  0 0 0 lseg_eq intltsel - ));
+DESCR("");
 DATA(insert OID = 1536 (  "#"    PGUID 0 b t f  601  601  600 1536  0 0 0 lseg_interpt - - ));
+DESCR("");
 DATA(insert OID = 1537 (  "?#"   PGUID 0 b t f  601  628   16 1537  0 0 0 inter_sl - - ));
+DESCR("");
 DATA(insert OID = 1538 (  "?#"   PGUID 0 b t f  601  603   16 1538  0 0 0 inter_sb - - ));
+DESCR("");
 DATA(insert OID = 1539 (  "?#"   PGUID 0 b t f  628  603   16 1539  0 0 0 inter_lb - - ));
+DESCR("");
 
 DATA(insert OID = 1546 (  "@"    PGUID 0 b t f  600  628   16    0  0 0 0 on_pl - - ));
+DESCR("");
 DATA(insert OID = 1547 (  "@"    PGUID 0 b t f  600  601   16    0  0 0 0 on_ps - - ));
+DESCR("");
 DATA(insert OID = 1548 (  "@"    PGUID 0 b t f  601  628   16    0  0 0 0 on_sl - - ));
+DESCR("");
 DATA(insert OID = 1549 (  "@"    PGUID 0 b t f  601  603   16    0  0 0 0 on_sb - - ));
+DESCR("");
 
 DATA(insert OID = 1557 (  "##"   PGUID 0 b t f  600  628  600    0  0 0 0 close_pl - - ));
+DESCR("");
 DATA(insert OID = 1558 (  "##"   PGUID 0 b t f  600  601  600    0  0 0 0 close_ps - - ));
+DESCR("");
 DATA(insert OID = 1559 (  "##"   PGUID 0 b t f  600  603  600    0  0 0 0 close_pb - - ));
+DESCR("");
 
 DATA(insert OID = 1566 (  "##"   PGUID 0 b t f  601  628  600    0  0 0 0 close_sl - - ));
+DESCR("");
 DATA(insert OID = 1567 (  "##"   PGUID 0 b t f  601  603  600    0  0 0 0 close_sb - - ));
+DESCR("");
 DATA(insert OID = 1568 (  "##"   PGUID 0 b t f  628  603  600    0  0 0 0 close_lb - - ));
+DESCR("");
 DATA(insert OID = 1585 (  "/"    PGUID 0 b t f 1186 1186 1186    0  0 0 0 timespan_div - - ));
+DESCR("");
 
 /*
  * function prototypes
index c9d81efebbb683bcd968b0e4eab968d934632209..4d5972c224dc243e7d9a6b0a78f0e9d7aeb809dd 100644 (file)
@@ -6,7 +6,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: pg_proc.h,v 1.33 1997/10/30 16:44:06 thomas Exp $
+ * $Id: pg_proc.h,v 1.34 1997/11/13 03:23:07 momjian Exp $
  *
  * NOTES
  *   The script catalog/genbki.sh reads this file and generates .bki
@@ -95,1046 +95,1930 @@ typedef FormData_pg_proc *Form_pg_proc;
 /* OIDS 1 - 99 */
 
 DATA(insert OID = 1242 (  boolin          PGUID 11 f t f 1 f 16 "0" 100 0 0  100  foo bar ));
+DESCR("");
 DATA(insert OID = 1243 (  boolout         PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1244 (  byteain         PGUID 11 f t f 1 f 17 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  31 (  byteaout         PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1245 (  charin          PGUID 11 f t f 1 f 18 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  33 (  charout          PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  34 (  namein               PGUID 11 f t f 1 f 19 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  35 (  nameout          PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  36 (  char16in         PGUID 11 f t f 1 f 19 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  37 (  char16out        PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  38 (  int2in               PGUID 11 f t f 1 f 21 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  39 (  int2out          PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  40 (  int28in          PGUID 11 f t f 1 f 22 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  41 (  int28out         PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  42 (  int4in               PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  43 (  int4out          PGUID 11 f t f 1 f 19 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  44 (  regprocin        PGUID 11 f t f 1 f 24 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  45 (  regprocout           PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  46 (  textin               PGUID 11 f t f 1 f 25 "0" 100 0 0 100  foo bar ));
+DESCR("");
 #define TextInRegProcedure 46
 
 DATA(insert OID =  47 (  textout          PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  48 (  tidin            PGUID 11 f t f 1 f 27 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  49 (  tidout               PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  50 (  xidin            PGUID 11 f t f 1 f 28 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  51 (  xidout               PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  52 (  cidin            PGUID 11 f t f 1 f 29 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  53 (  cidout               PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  54 (  oid8in               PGUID 11 f t f 1 f 30 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  55 (  oid8out          PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  56 (  boollt               PGUID 11 f t f 2 f 16 "16 16" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  57 (  boolgt               PGUID 11 f t f 2 f 16 "16 16" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  60 (  booleq               PGUID 11 f t f 2 f 16 "16 16" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  61 (  chareq               PGUID 11 f t f 2 f 16 "18 18" 100 0 0 100  foo bar ));
+DESCR("");
 #define          CharacterEqualRegProcedure      61
 
 DATA(insert OID =  62 (  nameeq               PGUID 11 f t f 2 f 16 "19 19" 100 0 0 100  foo bar ));
+DESCR("");
 #define NameEqualRegProcedure          62
 
 DATA(insert OID =  63 (  int2eq               PGUID 11 f t f 2 f 16 "21 21" 100 0 0 100  foo bar ));
+DESCR("");
 #define Integer16EqualRegProcedure     63
 
 DATA(insert OID =  64 (  int2lt               PGUID 11 f t f 2 f 16 "21 21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  65 (  int4eq               PGUID 11 f t f 2 f 16 "23 23" 100 0 0 100  foo bar ));
+DESCR("");
 #define Integer32EqualRegProcedure     65
 
 DATA(insert OID =  66 (  int4lt               PGUID 11 f t f 2 f 16 "23 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  67 (  texteq               PGUID 11 f t f 2 f 16 "25 25" 100 0 0 0  foo bar ));
+DESCR("");
 #define TextEqualRegProcedure          67
 
 DATA(insert OID =  68 (  xideq            PGUID 11 f t f 2 f 16 "28 28" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  69 (  cideq            PGUID 11 f t f 2 f 16 "29 29" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  70 (  charne               PGUID 11 f t f 2 f 16 "18 18" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1246 (  charlt          PGUID 11 f t f 2 f 16 "18 18" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  72 (  charle               PGUID 11 f t f 2 f 16 "18 18" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  73 (  chargt               PGUID 11 f t f 2 f 16 "18 18" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  74 (  charge               PGUID 11 f t f 2 f 16 "18 18" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1248 (  charpl          PGUID 11 f t f 2 f 18 "18 18" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1250 (  charmi          PGUID 11 f t f 2 f 18 "18 18" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  77 (  charmul          PGUID 11 f t f 2 f 18 "18 18" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  78 (  chardiv          PGUID 11 f t f 2 f 18 "18 18" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID =  79 (  nameregexeq      PGUID 11 f t f 2 f 16 "19 25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1252 (  nameregexne     PGUID 11 f t f 2 f 16 "19 25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1254 (  textregexeq     PGUID 11 f t f 2 f 16 "25 25" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 1256 (  textregexne     PGUID 11 f t f 2 f 16 "25 25" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 1258 (  textcat         PGUID 11 f t f 2 f 25 "25 25" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID =  84 (  boolne               PGUID 11 f t f 2 f 16 "16 16" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 1265 (  rtsel               PGUID 11 f t f 7 f 701 "26 26 21 0 23 23 26" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1266 (  rtnpage         PGUID 11 f t f 7 f 701 "26 26 21 0 23 23 26" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1268 (  btreesel        PGUID 11 f t f 7 f 701 "26 26 21 0 23 23 26" 100 0 0 100  foo bar ));
+DESCR("");
 
 /* 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  foo bar ));
+DESCR("");
 DATA(insert OID = 1272 (  eqsel               PGUID 11 f t f 5 f 701 "26 26 21 0 23" 100 0 0 100  foo bar ));
+DESCR("");
 #define EqualSelectivityProcedure 1272
 
 DATA(insert OID = 102 (  neqsel               PGUID 11 f t f 5 f 701 "26 26 21 0 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 103 (  intltsel         PGUID 11 f t f 5 f 701 "26 26 21 0 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 104 (  intgtsel         PGUID 11 f t f 5 f 701 "26 26 21 0 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 105 (  eqjoinsel        PGUID 11 f t f 5 f 701 "26 26 21 26 21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 106 (  neqjoinsel           PGUID 11 f t f 5 f 701 "26 26 21 26 21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 107 (  intltjoinsel     PGUID 11 f t f 5 f 701 "26 26 21 26 21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 108 (  intgtjoinsel     PGUID 11 f t f 5 f 701 "26 26 21 26 21" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 112 (  int4_text        PGUID 11 f t f 1 f  25 "23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 113 (  int2_text        PGUID 11 f t f 1 f  25 "21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 114 (  oid_text         PGUID 11 f t f 1 f  25 "26" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 115 (  box_above        PGUID 11 f t f 2 f  16 "603 603" 100 1 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 116 (  box_below        PGUID 11 f t f 2 f  16 "603 603" 100 1 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 117 (  point_in         PGUID 11 f t f 1 f 600 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 118 (  point_out        PGUID 11 f t f 1 f 23  "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 119 (  lseg_in          PGUID 11 f t f 1 f 601 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 120 (  lseg_out         PGUID 11 f t f 1 f 23  "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 121 (  path_in          PGUID 11 f t f 1 f 602 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 122 (  path_out         PGUID 11 f t f 1 f 23  "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 123 (  box_in               PGUID 11 f t f 1 f 603 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 124 (  box_out          PGUID 11 f t f 1 f 23  "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 125 (  box_overlap      PGUID 11 f t f 2 f 16 "603 603" 100 1 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 126 (  box_ge               PGUID 11 f t f 2 f 16 "603 603" 100 1 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 127 (  box_gt               PGUID 11 f t f 2 f 16 "603 603" 100 1 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 128 (  box_eq               PGUID 11 f t f 2 f 16 "603 603" 100 1 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 129 (  box_lt               PGUID 11 f t f 2 f 16 "603 603" 100 1 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 130 (  box_le               PGUID 11 f t f 2 f 16 "603 603" 100 1 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 131 (  point_above      PGUID 11 f t f 2 f 16 "600 600" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 132 (  point_left           PGUID 11 f t f 2 f 16 "600 600" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 133 (  point_right      PGUID 11 f t f 2 f 16 "600 600" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 134 (  point_below      PGUID 11 f t f 2 f 16 "600 600" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 135 (  point_eq         PGUID 11 f t f 2 f 16 "600 600" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 136 (  on_pb            PGUID 11 f t f 2 f 16 "600 603" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 137 (  on_ppath         PGUID 11 f t f 2 f 16 "600 602" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 138 (  box_center           PGUID 11 f t f 1 f 600 "603" 100 1 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 139 (  areasel          PGUID 11 f t f 5 f 701 "26 26 21 0 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 140 (  areajoinsel      PGUID 11 f t f 5 f 701 "26 26 21 0 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 141 (  int4mul          PGUID 11 f t f 2 f 23 "23 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 142 (  int4fac          PGUID 11 f t f 1 f 23 "23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 143 (  pointdist        PGUID 11 f t f 2 f 23 "600 600" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 144 (  int4ne               PGUID 11 f t f 2 f 16 "23 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 145 (  int2ne               PGUID 11 f t f 2 f 16 "21 21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 146 (  int2gt               PGUID 11 f t f 2 f 16 "21 21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 147 (  int4gt               PGUID 11 f t f 2 f 16 "23 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 148 (  int2le               PGUID 11 f t f 2 f 16 "21 21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 149 (  int4le               PGUID 11 f t f 2 f 16 "23 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 150 (  int4ge               PGUID 11 f t f 2 f 16 "23 23" 100 0 0 100  foo bar ));
+DESCR("");
 #define INT4GE_PROC_OID 150
 DATA(insert OID = 151 (  int2ge               PGUID 11 f t f 2 f 16 "21 21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 152 (  int2mul          PGUID 11 f t f 2 f 21 "21 21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 153 (  int2div          PGUID 11 f t f 2 f 21 "21 21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 154 (  int4div          PGUID 11 f t f 2 f 23 "23 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 155 (  int2mod          PGUID 11 f t f 2 f 21 "21 21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 156 (  int4mod          PGUID 11 f t f 2 f 23 "23 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 157 (  textne               PGUID 11 f t f 2 f 16 "25 25" 100 0 0 0  foo bar ));
+DESCR("");
 DATA(insert OID = 158 (  int24eq          PGUID 11 f t f 2 f 23 "21 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 159 (  int42eq          PGUID 11 f t f 2 f 23 "23 21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 160 (  int24lt          PGUID 11 f t f 2 f 23 "21 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 161 (  int42lt          PGUID 11 f t f 2 f 23 "23 21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 162 (  int24gt          PGUID 11 f t f 2 f 23 "21 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 163 (  int42gt          PGUID 11 f t f 2 f 23 "23 21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 164 (  int24ne          PGUID 11 f t f 2 f 23 "21 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 165 (  int42ne          PGUID 11 f t f 2 f 23 "23 21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 166 (  int24le          PGUID 11 f t f 2 f 23 "21 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 167 (  int42le          PGUID 11 f t f 2 f 23 "23 21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 168 (  int24ge          PGUID 11 f t f 2 f 23 "21 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 169 (  int42ge          PGUID 11 f t f 2 f 23 "23 21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 170 (  int24mul         PGUID 11 f t f 2 f 23 "21 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 171 (  int42mul         PGUID 11 f t f 2 f 23 "23 21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 172 (  int24div         PGUID 11 f t f 2 f 23 "21 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 173 (  int42div         PGUID 11 f t f 2 f 23 "23 21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 174 (  int24mod         PGUID 11 f t f 2 f 23 "21 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 175 (  int42mod         PGUID 11 f t f 2 f 23 "23 21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 176 (  int2pl               PGUID 11 f t f 2 f 21 "21 21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 177 (  int4pl               PGUID 11 f t f 2 f 23 "23 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 178 (  int24pl          PGUID 11 f t f 2 f 23 "21 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 179 (  int42pl          PGUID 11 f t f 2 f 23 "23 21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 180 (  int2mi               PGUID 11 f t f 2 f 21 "21 21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 181 (  int4mi               PGUID 11 f t f 2 f 23 "23 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 182 (  int24mi          PGUID 11 f t f 2 f 23 "21 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 183 (  int42mi          PGUID 11 f t f 2 f 23 "23 21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 184 (  oideq            PGUID 11 f t f 2 f 16 "26 26" 100 0 0 100  foo bar ));
+DESCR("");
 #define ObjectIdEqualRegProcedure      184
 
 DATA(insert OID = 185 (  oidne            PGUID 11 f t f 2 f 16 "26 26" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 186 (  box_same         PGUID 11 f t f 2 f 16 "603 603" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 187 (  box_contain      PGUID 11 f t f 2 f 16 "603 603" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 188 (  box_left         PGUID 11 f t f 2 f 16 "603 603" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 189 (  box_overleft     PGUID 11 f t f 2 f 16 "603 603" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 190 (  box_overright    PGUID 11 f t f 2 f 16 "603 603" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 191 (  box_right        PGUID 11 f t f 2 f 16 "603 603" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 192 (  box_contained    PGUID 11 f t f 2 f 16 "603 603" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 193 (  rt_box_union     PGUID 11 f t f 2 f 603 "603 603" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 194 (  rt_box_inter     PGUID 11 f t f 2 f 603 "603 603" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 195 (  rt_box_size      PGUID 11 f t f 2 f 700 "603 700" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 196 (  rt_bigbox_size    PGUID 11 f t f 2 f 700 "603 700" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 197 (  rt_poly_union    PGUID 11 f t f 2 f 604 "604 604" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 198 (  rt_poly_inter    PGUID 11 f t f 2 f 604 "604 604" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 199 (  rt_poly_size     PGUID 11 f t f 2 f 23 "604 23" 100 0 0 100  foo bar ));
+DESCR("");
 
 /* OIDS 200 - 299 */
 
 DATA(insert OID = 200 (  float4in         PGUID 11 f t f 1 f 700 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 201 (  float4out        PGUID 11 f t f 1 f 23  "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 202 (  float4mul        PGUID 11 f t f 2 f 700 "700 700" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 203 (  float4div        PGUID 11 f t f 2 f 700 "700 700" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 204 (  float4pl         PGUID 11 f t f 2 f 700 "700 700" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 205 (  float4mi         PGUID 11 f t f 2 f 700 "700 700" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 206 (  float4um         PGUID 11 f t f 1 f 700 "700" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 207 (  float4abs        PGUID 11 f t f 1 f 700 "700 700" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 208 (  float4inc        PGUID 11 f t f 1 f 700 "700" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 209 (  float4larger     PGUID 11 f t f 2 f 700 "700 700" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 211 (  float4smaller    PGUID 11 f t f 2 f 700 "700 700" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 212 (  int4um               PGUID 11 f t f 1 f 23 "23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 213 (  int2um               PGUID 11 f t f 1 f 21 "21" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 214 (  float8in         PGUID 11 f t f 1 f 701 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 215 (  float8out        PGUID 11 f t f 1 f 23  "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 216 (  float8mul        PGUID 11 f t f 2 f 701 "701 701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 217 (  float8div        PGUID 11 f t f 2 f 701 "701 701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 218 (  float8pl         PGUID 11 f t f 2 f 701 "701 701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 219 (  float8mi         PGUID 11 f t f 2 f 701 "701 701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 220 (  float8um         PGUID 11 f t f 1 f 701 "701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 221 (  float8abs        PGUID 11 f t f 1 f 701 "701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 222 (  float8inc        PGUID 11 f t f 1 f 701 "701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 223 (  float8larger     PGUID 11 f t f 2 f 701 "701 701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 224 (  float8smaller    PGUID 11 f t f 2 f 701 "701 701" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 225 (  lseg_center      PGUID 11 f t f 1 f 600 "601" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 226 (  path_center      PGUID 11 f t f 1 f 600 "602" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 227 (  poly_center      PGUID 11 f t f 1 f 600 "604" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 228 (  dround               PGUID 11 f t f 1 f 701 "701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 229 (  dtrunc               PGUID 11 f t f 1 f 701 "701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 230 (  dsqrt            PGUID 11 f t f 1 f 701 "701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 231 (  dcbrt            PGUID 11 f t f 1 f 701 "701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 232 (  dpow             PGUID 11 f t f 2 f 701 "701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 233 (  dexp             PGUID 11 f t f 1 f 701 "701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 234 (  dlog1            PGUID 11 f t f 1 f 701 "701" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 235 (  i2tod            PGUID 11 f t f 1 f 701  "21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 236 (  i2tof            PGUID 11 f t f 1 f 700  "21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 237 (  dtoi2            PGUID 11 f t f 1 f  21 "701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 238 (  ftoi2            PGUID 11 f t f 1 f  21 "700" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 239 (  line_distance    PGUID 11 f t f 2 f 701 "628 628" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 240 (  nabstimein           PGUID 11 f t f 1 f 702 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 241 (  nabstimeout      PGUID 11 f t f 1 f 23  "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 242 (  reltimein        PGUID 11 f t f 1 f 703 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 243 (  reltimeout           PGUID 11 f t f 1 f 23  "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 244 (  timepl               PGUID 11 f t f 2 f 702 "702 703" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 245 (  timemi               PGUID 11 f t f 2 f 702 "702 703" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 246 (  tintervalin      PGUID 11 f t f 1 f 704 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 247 (  tintervalout     PGUID 11 f t f 1 f 23  "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 248 (  ininterval           PGUID 11 f t f 2 f 16 "702 704" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 249 (  intervalrel      PGUID 11 f t f 1 f 703 "704" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 250 (  timenow          PGUID 11 f t f 0 f 702 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 251 (  abstimeeq        PGUID 11 f t f 2 f 16 "702 702" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 252 (  abstimene        PGUID 11 f t f 2 f 16 "702 702" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 253 (  abstimelt        PGUID 11 f t f 2 f 16 "702 702" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 254 (  abstimegt        PGUID 11 f t f 2 f 16 "702 702" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 255 (  abstimele        PGUID 11 f t f 2 f 16 "702 702" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 256 (  abstimege        PGUID 11 f t f 2 f 16 "702 702" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 257 (  reltimeeq        PGUID 11 f t f 2 f 16 "703 703" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 258 (  reltimene        PGUID 11 f t f 2 f 16 "703 703" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 259 (  reltimelt        PGUID 11 f t f 2 f 16 "703 703" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 260 (  reltimegt        PGUID 11 f t f 2 f 16 "703 703" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 261 (  reltimele        PGUID 11 f t f 2 f 16 "703 703" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 262 (  reltimege        PGUID 11 f t f 2 f 16 "703 703" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 263 (  intervalsame     PGUID 11 f t f 2 f 16 "704 704" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 264 (  intervalct           PGUID 11 f t f 2 f 16 "704 704" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 265 (  intervalov           PGUID 11 f t f 2 f 16 "704 704" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 266 (  intervalleneq    PGUID 11 f t f 2 f 16 "704 703" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 267 (  intervallenne    PGUID 11 f t f 2 f 16 "704 703" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 268 (  intervallenlt    PGUID 11 f t f 2 f 16 "704 703" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 269 (  intervallengt    PGUID 11 f t f 2 f 16 "704 703" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 270 (  intervallenle    PGUID 11 f t f 2 f 16 "704 703" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 271 (  intervallenge    PGUID 11 f t f 2 f 16 "704 703" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 272 (  intervalstart    PGUID 11 f t f 1 f 702 "704" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 273 (  intervalend      PGUID 11 f t f 1 f 702 "704" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 274 (  timeofday        PGUID 11 f t f 0 f 25 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 275 (  abstime_finite    PGUID 11 f t f 1 f 16 "702" 100 0 0 100 foo bar ));
+DESCR("");
 
 DATA(insert OID = 276 (  int2fac          PGUID 11 f t f 1 f 21 "21" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 277 (  inter_sl         PGUID 11 f t f 2 f 16 "601 628" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 278 (  inter_lb         PGUID 11 f t f 2 f 16 "628 603" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 279 (  float48mul           PGUID 11 f t f 2 f 701 "700 701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 280 (  float48div           PGUID 11 f t f 2 f 701 "700 701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 281 (  float48pl        PGUID 11 f t f 2 f 701 "700 701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 282 (  float48mi        PGUID 11 f t f 2 f 701 "700 701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 283 (  float84mul           PGUID 11 f t f 2 f 701 "701 700" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 284 (  float84div           PGUID 11 f t f 2 f 701 "701 700" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 285 (  float84pl        PGUID 11 f t f 2 f 701 "701 700" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 286 (  float84mi        PGUID 11 f t f 2 f 701 "701 700" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 287 (  float4eq         PGUID 11 f t f 2 f 16 "700 700" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 288 (  float4ne         PGUID 11 f t f 2 f 16 "700 700" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 289 (  float4lt         PGUID 11 f t f 2 f 16 "700 700" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 290 (  float4le         PGUID 11 f t f 2 f 16 "700 700" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 291 (  float4gt         PGUID 11 f t f 2 f 16 "700 700" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 292 (  float4ge         PGUID 11 f t f 2 f 16 "700 700" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 293 (  float8eq         PGUID 11 f t f 2 f 16 "701 701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 294 (  float8ne         PGUID 11 f t f 2 f 16 "701 701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 295 (  float8lt         PGUID 11 f t f 2 f 16 "701 701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 296 (  float8le         PGUID 11 f t f 2 f 16 "701 701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 297 (  float8gt         PGUID 11 f t f 2 f 16 "701 701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 298 (  float8ge         PGUID 11 f t f 2 f 16 "701 701" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 299 (  float48eq        PGUID 11 f t f 2 f 16 "700 701" 100 0 0 100  foo bar ));
+DESCR("");
 
 /* OIDS 300 - 399 */
 
 DATA(insert OID = 300 (  float48ne        PGUID 11 f t f 2 f 16 "700 701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 301 (  float48lt        PGUID 11 f t f 2 f 16 "700 701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 302 (  float48le        PGUID 11 f t f 2 f 16 "700 701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 303 (  float48gt        PGUID 11 f t f 2 f 16 "700 701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 304 (  float48ge        PGUID 11 f t f 2 f 16 "700 701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 305 (  float84eq        PGUID 11 f t f 2 f 16 "701 700" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 306 (  float84ne        PGUID 11 f t f 2 f 16 "701 700" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 307 (  float84lt        PGUID 11 f t f 2 f 16 "701 700" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 308 (  float84le        PGUID 11 f t f 2 f 16 "701 700" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 309 (  float84gt        PGUID 11 f t f 2 f 16 "701 700" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 310 (  float84ge        PGUID 11 f t f 2 f 16 "701 700" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 311 (  ftod             PGUID 11 f t f 2 f 701 "700" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 312 (  dtof             PGUID 11 f t f 2 f 700 "701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 313 (  i2toi4               PGUID 11 f t f 1 f  23  "21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 314 (  i4toi2               PGUID 11 f t f 1 f  21  "23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 315 (  keyfirsteq           PGUID 11 f t f 2 f  16   "0 21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 316 (  i4tod            PGUID 11 f t f 1 f 701  "23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 317 (  dtoi4            PGUID 11 f t f 1 f  23 "701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 318 (  i4tof            PGUID 11 f t f 1 f 700  "23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 319 (  ftoi4            PGUID 11 f t f 1 f  23 "700" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 320 (  rtinsert         PGUID 11 f t f 5 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 321 (  rtdelete         PGUID 11 f t f 2 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 322 (  rtgettuple           PGUID 11 f t f 2 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 323 (  rtbuild          PGUID 11 f t f 9 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 324 (  rtbeginscan      PGUID 11 f t f 4 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 325 (  rtendscan        PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 326 (  rtmarkpos        PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 327 (  rtrestrpos           PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 328 (  rtrescan         PGUID 11 f t f 3 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 330 (  btgettuple           PGUID 11 f t f 2 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 331 (  btinsert         PGUID 11 f t f 5 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 332 (  btdelete         PGUID 11 f t f 2 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 333 (  btbeginscan      PGUID 11 f t f 4 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 334 (  btrescan         PGUID 11 f t f 3 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 335 (  btendscan        PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 336 (  btmarkpos        PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 337 (  btrestrpos           PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 338 (  btbuild          PGUID 11 f t f 9 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 339 (  poly_same        PGUID 11 f t f 2 f 16 "604 604" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 340 (  poly_contain     PGUID 11 f t f 2 f 16 "604 604" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 341 (  poly_left        PGUID 11 f t f 2 f 16 "604 604" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 342 (  poly_overleft    PGUID 11 f t f 2 f 16 "604 604" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 343 (  poly_overright    PGUID 11 f t f 2 f 16 "604 604" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 344 (  poly_right           PGUID 11 f t f 2 f 16 "604 604" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 345 (  poly_contained    PGUID 11 f t f 2 f 16 "604 604" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 346 (  poly_overlap     PGUID 11 f t f 2 f 16 "604 604" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 347 (  poly_in          PGUID 11 f t f 1 f 604 "0" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 348 (  poly_out         PGUID 11 f t f 1 f 23  "0" 100 0 1 0  foo bar ));
+DESCR("");
 
 DATA(insert OID = 350 (  btint2cmp        PGUID 11 f t f 2 f 23 "21 21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 351 (  btint4cmp        PGUID 11 f t f 2 f 23 "23 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 352 (  btint42cmp           PGUID 11 f t f 2 f 23 "23 21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 353 (  btint24cmp           PGUID 11 f t f 2 f 23 "21 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 354 (  btfloat4cmp      PGUID 11 f t f 2 f 23 "700 700" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 355 (  btfloat8cmp      PGUID 11 f t f 2 f 23 "701 701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 356 (  btoidcmp         PGUID 11 f t f 2 f 23 "26 26" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 357 (  btabstimecmp     PGUID 11 f t f 2 f 23 "702 702" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 358 (  btcharcmp        PGUID 11 f t f 2 f 23 "18 18" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 359 (  btnamecmp        PGUID 11 f t f 2 f 23 "19 19" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 360 (  bttextcmp        PGUID 11 f t f 2 f 23 "25 25" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 361 (  lseg_distance    PGUID 11 f t f 2 f 701 "601 601" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 362 (  lseg_interpt     PGUID 11 f t f 2 f 600 "601 601" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 363 (  dist_ps          PGUID 11 f t f 2 f 701 "600 601" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 364 (  dist_pb          PGUID 11 f t f 2 f 701 "600 603" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 365 (  dist_sb          PGUID 11 f t f 2 f 701 "601 603" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 366 (  close_ps         PGUID 11 f t f 2 f 600 "600 601" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 367 (  close_pb         PGUID 11 f t f 2 f 600 "600 603" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 368 (  close_sb         PGUID 11 f t f 2 f 600 "601 603" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 369 (  on_ps            PGUID 11 f t f 2 f 16 "600 601" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 370 (  path_distance    PGUID 11 f t f 2 f 701 "602 602" 100 0 1 0 foo bar ));
+DESCR("");
 DATA(insert OID = 371 (  dist_ppath           PGUID 11 f t f 2 f 701 "600 602" 100 0 1 0 foo bar ));
+DESCR("");
 DATA(insert OID = 372 (  on_sb            PGUID 11 f t f 2 f 16 "601 603" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 373 (  inter_sb         PGUID 11 f t f 2 f 16 "601 603" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1274 (  btchar16cmp     PGUID 11 f t f 2 f 23 "19 19" 100 0 0 100  foo bar ));
+DESCR("");
 
 /* OIDS 400 - 499 */
 
 DATA(insert OID =  438 (  hashsel         PGUID 11 f t t 7 f 701 "26 26 21 0 23 23 26" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  439 (  hashnpage           PGUID 11 f t t 7 f 701 "26 26 21 0 23 23 26" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 440 (  hashgettuple     PGUID 11 f t f 2 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 441 (  hashinsert           PGUID 11 f t f 5 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 442 (  hashdelete           PGUID 11 f t f 2 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 443 (  hashbeginscan    PGUID 11 f t f 4 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 444 (  hashrescan           PGUID 11 f t f 3 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 445 (  hashendscan      PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 446 (  hashmarkpos      PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 447 (  hashrestrpos     PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 448 (  hashbuild        PGUID 11 f t f 9 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 449 (  hashint2         PGUID 11 f t f 2 f 23 "21 21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 450 (  hashint4         PGUID 11 f t f 2 f 23 "23 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 451 (  hashfloat4           PGUID 11 f t f 2 f 23 "700 700" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 452 (  hashfloat8           PGUID 11 f t f 2 f 23 "701 701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 453 (  hashoid          PGUID 11 f t f 2 f 23 "26 26" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 454 (  hashchar         PGUID 11 f t f 2 f 23 "18 18" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 455 (  hashname         PGUID 11 f t f 2 f 23 "19 19" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 456 (  hashtext         PGUID 11 f t f 2 f 23 "25 25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 466 (  char2in          PGUID 11 f t f 1 f 409 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 467 (  char4in          PGUID 11 f t f 1 f 410 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 468 (  char8in          PGUID 11 f t f 1 f 411 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 469 (  char2out         PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 470 (  char4out         PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 471 (  char8out         PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 472 (  char2eq          PGUID 11 f t f 2 f 16 "409 409" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 473 (  char4eq          PGUID 11 f t f 2 f 16 "410 410" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 474 (  char8eq          PGUID 11 f t f 2 f 16 "411 411" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 475 (  char2lt          PGUID 11 f t f 2 f 16 "409 409" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 476 (  char4lt          PGUID 11 f t f 2 f 16 "410 410" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 477 (  char8lt          PGUID 11 f t f 2 f 16 "411 411" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 478 (  char2le          PGUID 11 f t f 2 f 16 "409 409" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 479 (  char4le          PGUID 11 f t f 2 f 16 "410 410" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 480 (  char8le          PGUID 11 f t f 2 f 16 "411 411" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 481 (  char2gt          PGUID 11 f t f 2 f 16 "409 409" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 482 (  char4gt          PGUID 11 f t f 2 f 16 "410 410" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 483 (  char8gt          PGUID 11 f t f 2 f 16 "411 411" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 484 (  char2ge          PGUID 11 f t f 2 f 16 "409 409" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1275 (  char16eq        PGUID 11 f t f 2 f 16 "19 19" 100 0 0 100  foo bar ));
+DESCR("");
 #define Character16EqualRegProcedure   1275
 DATA(insert OID = 1276 (  char16lt        PGUID 11 f t f 2 f 16 "19 19" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1277 (  char16le        PGUID 11 f t f 2 f 16 "19 19" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1278 (  char16gt        PGUID 11 f t f 2 f 16 "19 19" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1279 (  char16ge        PGUID 11 f t f 2 f 16 "19 19" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1280 (  char16ne        PGUID 11 f t f 2 f 16 "19 19" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 1281 (  hashchar16      PGUID 11 f t f 2 f 23 "19 19" 100 0 0 100  foo bar ));
+DESCR("");
 
 /* OIDS 500 - 599 */
 
 /* OIDS 600 - 699 */
 
 DATA(insert OID = 1285 (  int4notin           PGUID 11 f t f 2 f 16 "21 0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1286 (  oidnotin        PGUID 11 f t f 2 f 16 "26 0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1287 (  int44in         PGUID 11 f t f 1 f 22 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 653 (  int44out         PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 655 (  namelt               PGUID 11 f t f 2 f 16 "19 19" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 656 (  namele               PGUID 11 f t f 2 f 16 "19 19" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 657 (  namegt               PGUID 11 f t f 2 f 16 "19 19" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 658 (  namege               PGUID 11 f t f 2 f 16 "19 19" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 659 (  namene               PGUID 11 f t f 2 f 16 "19 19" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 682 (  mktinterval      PGUID 11 f t f 2 f 704 "702 702" 100 0 0 100 foo bar ));
+DESCR("");
 DATA(insert OID = 683 (  oid8eq               PGUID 11 f t f 2 f 16 "30 30" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 684 (  char4ge          PGUID 11 f t f 2 f 16 "410 410" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 685 (  char8ge          PGUID 11 f t f 2 f 16 "411 411" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 686 (  char2ne          PGUID 11 f t f 2 f 16 "409 409" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 687 (  char4ne          PGUID 11 f t f 2 f 16 "410 410" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 688 (  char8ne          PGUID 11 f t f 2 f 16 "411 411" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 689 (  btchar2cmp           PGUID 11 f t f 2 f 23 "409 409" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 690 (  btchar4cmp           PGUID 11 f t f 2 f 23 "410 410" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 691 (  btchar8cmp           PGUID 11 f t f 2 f 23 "411 411" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 692 (  hashchar2        PGUID 11 f t f 2 f 23 "409 409" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 693 (  hashchar4        PGUID 11 f t f 2 f 23 "410 410" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 694 (  hashchar8        PGUID 11 f t f 2 f 23 "411 411" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 695 (  char8regexeq     PGUID 11 f t f 2 f 16 "411 25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 696 (  char8regexne     PGUID 11 f t f 2 f 16 "411 25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 699 (  char2regexeq     PGUID 11 f t f 2 f 16 "409 25" 100 0 0 100  foo bar ));
+DESCR("");
 
 /* OIDS 700 - 799 */
 
 DATA(insert OID = 1288 (  char16regexeq    PGUID 11 f t f 2 f 16 "19 25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1289 (  char16regexne    PGUID 11 f t f 2 f 16 "19 25" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 710 (  getpgusername    PGUID 11 f t f 0 f 19 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 711 (  userfntest           PGUID 11 f t f 1 f 23 "23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 713 (  oidrand          PGUID 11 f t f 2 f 16 "26 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 715 (  oidsrand         PGUID 11 f t f 1 f 16 "23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 716 (  oideqint4        PGUID 11 f t f 2 f 16 "26 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 717 (  int4eqoid        PGUID 11 f t f 2 f 16 "23 26" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 720 (  byteaGetSize     PGUID 11 f t f 1 f 23 "17" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 721 (  byteaGetByte     PGUID 11 f t f 2 f 23 "17 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 722 (  byteaSetByte     PGUID 11 f t f 3 f 17 "17 23 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 723 (  byteaGetBit      PGUID 11 f t f 2 f 23 "17 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 724 (  byteaSetBit      PGUID 11 f t f 3 f 17 "17 23 23" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 725 (  dist_pl          PGUID 11 f t f 2 f 701 "600 628" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 726 (  dist_lb          PGUID 11 f t f 2 f 701 "628 603" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 727 (  dist_sl          PGUID 11 f t f 2 f 701 "601 628" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 728 (  dist_cpoly           PGUID 11 f t f 2 f 701 "718 604" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 729 (  poly_distance    PGUID 11 f t f 2 f 701 "604 604" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 730 (  pqtest               PGUID 11 f t f 1 f 23 "25" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 740 (  text_lt          PGUID 11 f t f 2 f 16 "25 25" 100 0 0 0  foo bar ));
+DESCR("");
 DATA(insert OID = 741 (  text_le          PGUID 11 f t f 2 f 16 "25 25" 100 0 0 0  foo bar ));
+DESCR("");
 DATA(insert OID = 742 (  text_gt          PGUID 11 f t f 2 f 16 "25 25" 100 0 0 0  foo bar ));
+DESCR("");
 DATA(insert OID = 743 (  text_ge          PGUID 11 f t f 2 f 16 "25 25" 100 0 0 0  foo bar ));
+DESCR("");
 
 DATA(insert OID = 744 (  array_eq         PGUID 11 f t f 2 f 16 "0 0" 100 0 0 100 foo bar));
+DESCR("");
 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 foo bar));
+DESCR("");
 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 foo bar));
+DESCR("");
 DATA(insert OID = 747 (  array_dims           PGUID 11 f t f 1 f 25 "0" 100 0 0 100 foo bar));
+DESCR("");
 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 foo bar));
+DESCR("");
 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 foo bar));
+DESCR("");
 DATA(insert OID = 750 (  array_in         PGUID 11 f t f 2 f 23 "0 0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 751 (  array_out        PGUID 11 f t f 2 f 23 "0 0" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 752 (  filename_in      PGUID 11 f t f 2 f 605 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 753 (  filename_out     PGUID 11 f t f 2 f 19  "0" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 760 (  smgrin               PGUID 11 f t f 1 f 210 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 761 (  smgrout          PGUID 11 f t f 1 f 23  "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 762 (  smgreq               PGUID 11 f t f 2 f 16 "210 210" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 763 (  smgrne               PGUID 11 f t f 2 f 16 "210 210" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 764 (  lo_import        PGUID 11 f t f 1 f 26 "25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 765 (  lo_export        PGUID 11 f t f 2 f 23 "26 25" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 766 (  int4inc          PGUID 11 f t f 1 f 23 "23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 767 (  int2inc          PGUID 11 f t f 1 f 21 "21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 768 (  int4larger           PGUID 11 f t f 2 f 23 "23 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 769 (  int4smaller      PGUID 11 f t f 2 f 23 "23 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 770 (  int2larger           PGUID 11 f t f 2 f 21 "21 21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 771 (  int2smaller      PGUID 11 f t f 2 f 21 "21 21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 772 (  gistsel          PGUID 11 f t t 7 f 701 "26 26 21 0 23 23 26" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 773 (  gistnpage        PGUID 11 f t t 7 f 701 "26 26 21 0 23 23 26" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 774 (  gistgettuple     PGUID 11 f t f 2 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 775 (  gistinsert           PGUID 11 f t f 5 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 776 (  gistdelete           PGUID 11 f t f 2 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 777 (  gistbeginscan    PGUID 11 f t f 4 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 778 (  gistrescan           PGUID 11 f t f 3 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 779 (  gistendscan      PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 780 (  gistmarkpos      PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 781 (  gistrestrpos     PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 782 (  gistbuild        PGUID 11 f t f 9 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 784 (  intervaleq           PGUID 11 f t f 2 f 16 "704 704" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 785 (  intervalne           PGUID 11 f t f 2 f 16 "704 704" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 786 (  intervallt           PGUID 11 f t f 2 f 16 "704 704" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 787 (  intervalgt           PGUID 11 f t f 2 f 16 "704 704" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 788 (  intervalle           PGUID 11 f t f 2 f 16 "704 704" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 789 (  intervalge           PGUID 11 f t f 2 f 16 "704 704" 100 0 0 100  foo bar ));
+DESCR("");
 
 /* OIDS 800 - 899 */
 
 DATA(insert OID = 817 (  text_oid         PGUID 11 f t f 1 f 26 "25" 100 0 0 100  foo bar));
+DESCR("");
 DATA(insert OID = 818 (  text_int2        PGUID 11 f t f 1 f 21 "25" 100 0 0 100  foo bar));
+DESCR("");
 DATA(insert OID = 819 (  text_int4        PGUID 11 f t f 1 f 23 "25" 100 0 0 100  foo bar));
+DESCR("");
 
 DATA(insert OID = 820 (  oidint2in        PGUID 11 f t f 1 f 810 "0" 100 0 0 100  foo bar));
+DESCR("");
 DATA(insert OID = 821 (  oidint2out           PGUID 11 f t f 1 f 19 "0" 100 0 0 100  foo bar));
+DESCR("");
 DATA(insert OID = 822 (  oidint2lt        PGUID 11 f t f 2 f 16 "810 810" 100 0 0 100  foo bar));
+DESCR("");
 DATA(insert OID = 823 (  oidint2le        PGUID 11 f t f 2 f 16 "810 810" 100 0 0 100  foo bar));
+DESCR("");
 DATA(insert OID = 824 (  oidint2eq        PGUID 11 f t f 2 f 16 "810 810" 100 0 0 100  foo bar));
+DESCR("");
 
 #define OidInt2EqRegProcedure 824
 
 DATA(insert OID = 825 (  oidint2ge        PGUID 11 f t f 2 f 16 "810 810" 100 0 0 100  foo bar));
+DESCR("");
 DATA(insert OID = 826 (  oidint2gt        PGUID 11 f t f 2 f 16 "810 810" 100 0 0 100  foo bar));
+DESCR("");
 DATA(insert OID = 827 (  oidint2ne        PGUID 11 f t f 2 f 16 "810 810" 100 0 0 100  foo bar));
+DESCR("");
 DATA(insert OID = 828 (  oidint2cmp           PGUID 11 f t f 2 f 21 "810 810" 100 0 0 100  foo bar));
+DESCR("");
 DATA(insert OID = 829 (  mkoidint2        PGUID 11 f t f 2 f 810 "26 21" 100 0 0 100  foo bar));
+DESCR("");
 
 DATA(insert OID =  837 (  char2regexne    PGUID 11 f t f 2 f 16 "409 25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  836 (  char4regexeq    PGUID 11 f t f 2 f 16 "410 25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  838 (  char4regexne    PGUID 11 f t f 2 f 16 "410 25" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID =  849 (  textpos         PGUID 11 f t f 2 f 23 "25 25" 100 0 1 0 foo bar ));
+DESCR("");
 DATA(insert OID =  850 (  textlike        PGUID 11 f t f 2 f 16 "25 25" 100 0 1 0 foo bar ));
+DESCR("");
 DATA(insert OID =  851 (  textnlike           PGUID 11 f t f 2 f 16 "25 25" 100 0 1 0 foo bar ));
+DESCR("");
 DATA(insert OID =  852 (  char2like           PGUID 11 f t f 2 f 16 "409 25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  853 (  char2nlike      PGUID 11 f t f 2 f 16 "409 25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  854 (  char4like           PGUID 11 f t f 2 f 16 "410 25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  855 (  char4nlike      PGUID 11 f t f 2 f 16 "410 25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  856 (  char8like           PGUID 11 f t f 2 f 16 "411 25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  857 (  char8nlike      PGUID 11 f t f 2 f 16 "411 25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  858 (  namelike        PGUID 11 f t f 2 f 16 "19 25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  859 (  namenlike           PGUID 11 f t f 2 f 16 "19 25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  860 (  char16like      PGUID 11 f t f 2 f 16 "20 25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  861 (  char16nlike     PGUID 11 f t f 2 f 16 "20 25" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID =  846 (  cash_mul_flt4           PGUID 11 f t f 2 f 790 "790 700" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  847 (  cash_div_flt4           PGUID 11 f t f 2 f 790 "790 700" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  848 (  flt4_mul_cash           PGUID 11 f t f 2 f 790 "700 790" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID =  862 (  int4_mul_cash           PGUID 11 f t f 2 f 790 "23 790" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  863 (  int2_mul_cash           PGUID 11 f t f 2 f 790 "21 790" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  864 (  cash_mul_int4           PGUID 11 f t f 2 f 790 "790 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  865 (  cash_div_int4           PGUID 11 f t f 2 f 790 "790 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  866 (  cash_mul_int2           PGUID 11 f t f 2 f 790 "790 21" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  867 (  cash_div_int2           PGUID 11 f t f 2 f 790 "790 21" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID =  886 (  cash_in         PGUID 11 f t f 1 f 790 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  887 (  cash_out        PGUID 11 f t f 1 f  23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  888 (  cash_eq         PGUID 11 f t f 2 f  16 "790 790" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  889 (  cash_ne         PGUID 11 f t f 2 f  16 "790 790" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  890 (  cash_lt         PGUID 11 f t f 2 f  16 "790 790" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  891 (  cash_le         PGUID 11 f t f 2 f  16 "790 790" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  892 (  cash_gt         PGUID 11 f t f 2 f  16 "790 790" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  893 (  cash_ge         PGUID 11 f t f 2 f  16 "790 790" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  894 (  cash_pl         PGUID 11 f t f 2 f 790 "790 790" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  895 (  cash_mi         PGUID 11 f t f 2 f 790 "790 790" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  896 (  cash_mul_flt8           PGUID 11 f t f 2 f 790 "790 701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  897 (  cash_div_flt8           PGUID 11 f t f 2 f 790 "790 701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  898 (  cashlarger      PGUID 11 f t f 2 f 790 "790 790" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  899 (  cashsmaller     PGUID 11 f t f 2 f 790 "790 790" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID =  919 (  flt8_mul_cash           PGUID 11 f t f 2 f 790 "701 790" 100 0 0 100  foo bar ));
+DESCR("");
 
 /* OIDS 900 - 999 */
 
 DATA(insert OID = 920 (  oidint4in        PGUID 11 f t f 1 f 910 "0" 100 0 0 100  foo bar));
+DESCR("");
 DATA(insert OID = 921 (  oidint4out           PGUID 11 f t f 1 f 19 "0" 100 0 0 100  foo bar));
+DESCR("");
 DATA(insert OID = 922 (  oidint4lt        PGUID 11 f t f 2 f 16 "910 910" 100 0 0 100  foo bar));
+DESCR("");
 DATA(insert OID = 923 (  oidint4le        PGUID 11 f t f 2 f 16 "910 910" 100 0 0 100  foo bar));
+DESCR("");
 DATA(insert OID = 924 (  oidint4eq        PGUID 11 f t f 2 f 16 "910 910" 100 0 0 100  foo bar));
+DESCR("");
 
 #define OidInt4EqRegProcedure 924
 
 DATA(insert OID = 925 (  oidint4ge        PGUID 11 f t f 2 f 16 "910 910" 100 0 0 100  foo bar));
+DESCR("");
 DATA(insert OID = 926 (  oidint4gt        PGUID 11 f t f 2 f 16 "910 910" 100 0 0 100  foo bar));
+DESCR("");
 DATA(insert OID = 927 (  oidint4ne        PGUID 11 f t f 2 f 16 "910 910" 100 0 0 100  foo bar));
+DESCR("");
 DATA(insert OID = 928 (  oidint4cmp           PGUID 11 f t f 2 f 23 "910 910" 100 0 0 100  foo bar));
+DESCR("");
 DATA(insert OID = 929 (  mkoidint4        PGUID 11 f t f 2 f 910 "26 23" 100 0 0 100  foo bar));
+DESCR("");
 
 /* isoldpath, upgradepath, upgradepoly, revertpoly are used to update pre-v6.1 to v6.1 - tgl 97/06/03 */
 DATA(insert OID = 936 (  isoldpath        PGUID 11 f t f 1 f  16 "602" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 937 (  upgradepath      PGUID 11 f t f 1 f 602 "602" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 938 (  upgradepoly      PGUID 11 f t f 1 f 604 "604" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 939 (  revertpoly           PGUID 11 f t f 1 f 604 "604" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 940 (  oidnamein        PGUID 11 f t f 1 f 911 "0" 100 0 0 100  foo bar));
+DESCR("");
 DATA(insert OID = 941 (  oidnameout           PGUID 11 f t f 1 f 19 "0" 100 0 0 100  foo bar));
+DESCR("");
 DATA(insert OID = 942 (  oidnamelt        PGUID 11 f t f 2 f 16 "911 911" 100 0 0 100  foo bar));
+DESCR("");
 DATA(insert OID = 943 (  oidnamele        PGUID 11 f t f 2 f 16 "911 911" 100 0 0 100  foo bar));
+DESCR("");
 DATA(insert OID = 944 (  oidnameeq        PGUID 11 f t f 2 f 16 "911 911" 100 0 0 100  foo bar));
+DESCR("");
 
 #define OidNameEqRegProcedure 944
 
 DATA(insert OID = 945 (  oidnamege        PGUID 11 f t f 2 f 16 "911 911" 100 0 0 100  foo bar));
+DESCR("");
 DATA(insert OID = 946 (  oidnamegt        PGUID 11 f t f 2 f 16 "911 911" 100 0 0 100  foo bar));
+DESCR("");
 DATA(insert OID = 947 (  oidnamene        PGUID 11 f t f 2 f 16 "911 911" 100 0 0 100  foo bar));
+DESCR("");
 DATA(insert OID = 948 (  oidnamecmp           PGUID 11 f t f 2 f 23 "911 911" 100 0 0 100  foo bar));
+DESCR("");
 DATA(insert OID = 949 (  mkoidname        PGUID 11 f t f 2 f 911 "26 19" 100 0 0 100  foo bar));
+DESCR("");
 
 DATA(insert OID = 950 (  istrue               PGUID 11 f t f 1 f 16 "16" 100 0 0 100   foo bar ));
+DESCR("");
 DATA(insert OID = 951 (  isfalse          PGUID 11 f t f 1 f 16 "16" 100 0 0 100   foo bar ));
+DESCR("");
 
 DATA(insert OID = 952 (  lo_open          PGUID 11 f t f 2 f 23 "26 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 953 (  lo_close         PGUID 11 f t f 1 f 23 "23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 954 (  loread               PGUID 11 f t f 2 f 17 "23 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 955 (  lowrite          PGUID 11 f t f 2 f 23 "23 17" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 956 (  lo_lseek         PGUID 11 f t f 3 f 23 "23 23 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 957 (  lo_creat         PGUID 11 f t f 1 f 26 "23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 958 (  lo_tell          PGUID 11 f t f 1 f 23 "23" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 959 (  on_pl            PGUID 11 f t f 2 f  16 "600 628" 100 0 10 100  foo bar ));
+DESCR("");
 DATA(insert OID = 960 (  on_sl            PGUID 11 f t f 2 f  16 "601 628" 100 0 10 100  foo bar ));
+DESCR("");
 DATA(insert OID = 961 (  close_pl         PGUID 11 f t f 2 f 600 "600 628" 100 0 10 100  foo bar ));
+DESCR("");
 DATA(insert OID = 962 (  close_sl         PGUID 11 f t f 2 f 600 "601 628" 100 0 10 100  foo bar ));
+DESCR("");
 DATA(insert OID = 963 (  close_lb         PGUID 11 f t f 2 f 600 "628 603" 100 0 10 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 964 (  lo_unlink        PGUID 11 f t f 1 f  23 "23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 972 (  regproctooid     PGUID 11 f t f 1 f  26 "24" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 973 (  path_inter           PGUID 11 f t f 2 f  16 "602 602" 100 0 10 100  foo bar ));
+DESCR("");
 DATA(insert OID = 975 (  box_area         PGUID 11 f t f 1 f 701 "603" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 976 (  box_width        PGUID 11 f t f 1 f 701 "603" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 977 (  box_height           PGUID 11 f t f 1 f 701 "603" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 978 (  box_distance     PGUID 11 f t f 2 f 701 "603 603" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 980 (  box_intersect    PGUID 11 f t f 2 f 603 "603 603" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 981 (  box_diagonal     PGUID 11 f t f 1 f 601 "603" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 982 (  path_n_lt        PGUID 11 f t f 2 f 16 "602 602" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 983 (  path_n_gt        PGUID 11 f t f 2 f 16 "602 602" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 984 (  path_n_eq        PGUID 11 f t f 2 f 16 "602 602" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 985 (  path_n_le        PGUID 11 f t f 2 f 16 "602 602" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 986 (  path_n_ge        PGUID 11 f t f 2 f 16 "602 602" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 987 (  path_length      PGUID 11 f t f 1 f 701 "602" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 988 (  point_ne         PGUID 11 f t f 2 f 16 "600 600" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 989 (  point_vert           PGUID 11 f t f 2 f 16 "600 600" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 990 (  point_horiz      PGUID 11 f t f 2 f 16 "600 600" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 991 (  point_distance    PGUID 11 f t f 2 f 701 "600 600" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 992 (  point_slope      PGUID 11 f t f 2 f 701 "600 600" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 993 (  lseg_construct    PGUID 11 f t f 2 f 601 "600 600" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 994 (  lseg_intersect    PGUID 11 f t f 2 f 16 "601 601" 100 0 0 100 foo bar ));
+DESCR("");
 DATA(insert OID = 995 (  lseg_parallel    PGUID 11 f t f 2 f 16 "601 601" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 996 (  lseg_perp        PGUID 11 f t f 2 f 16 "601 601" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 997 (  lseg_vertical    PGUID 11 f t f 1 f 16 "601" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 998 (  lseg_horizontal   PGUID 11 f t f 1 f 16 "601" 100 0 0 100 foo bar ));
+DESCR("");
 DATA(insert OID = 999 (  lseg_eq          PGUID 11 f t f 2 f 16 "601 601" 100 0 0 100  foo bar ));
+DESCR("");
 
 /* OIDS 1000 - 1999 */
 
 DATA(insert OID = 1029 (  nullvalue           PGUID 11 f t f 1 f 16 "0" 100 0 0 100  foo bar ));
+DESCR("");
 #define NullValueRegProcedure 1029
 DATA(insert OID = 1030 (  nonnullvalue    PGUID 11 f t f 1 f 16 "0" 100 0 0 100  foo bar ));
+DESCR("");
 #define NonNullValueRegProcedure 1030
 DATA(insert OID = 1031 (  aclitemin           PGUID 11 f t f 1 f 1033 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1032 (  aclitemout      PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1035 (  aclinsert           PGUID 11 f t f 2 f 1034 "1034 1033" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1036 (  aclremove           PGUID 11 f t f 2 f 1034 "1034 1033" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1037 (  aclcontains     PGUID 11 f t f 2 f 16 "1034 1033" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1038 (  seteval         PGUID 11 f t f 1 f 23 "26" 100 0 0 100  foo bar ));
+DESCR("");
 #define SetEvalRegProcedure 1038
 
 DATA(insert OID = 1044 (  bpcharin        PGUID 11 f t f 3 f 1042 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1045 (  bpcharout           PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1046 (  varcharin           PGUID 11 f t f 3 f 1043 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1047 (  varcharout      PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1048 (  bpchareq        PGUID 11 f t f 2 f 16 "1042 1042" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1049 (  bpcharlt        PGUID 11 f t f 2 f 16 "1042 1042" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1050 (  bpcharle        PGUID 11 f t f 2 f 16 "1042 1042" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1051 (  bpchargt        PGUID 11 f t f 2 f 16 "1042 1042" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1052 (  bpcharge        PGUID 11 f t f 2 f 16 "1042 1042" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1053 (  bpcharne        PGUID 11 f t f 2 f 16 "1042 1042" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1070 (  varchareq           PGUID 11 f t f 2 f 16 "1043 1043" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1071 (  varcharlt           PGUID 11 f t f 2 f 16 "1043 1043" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1072 (  varcharle           PGUID 11 f t f 2 f 16 "1043 1043" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1073 (  varchargt           PGUID 11 f t f 2 f 16 "1043 1043" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1074 (  varcharge           PGUID 11 f t f 2 f 16 "1043 1043" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1075 (  varcharne           PGUID 11 f t f 2 f 16 "1043 1043" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1078 (  bpcharcmp           PGUID 11 f t f 2 f 23 "1042 1042" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1079 (  varcharcmp      PGUID 11 f t f 2 f 23 "1043 1043" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1080 (  hashbpchar      PGUID 11 f t f 1 f 23 "1042" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1081 (  hashvarchar     PGUID 11 f t f 1 f 23 "1043" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 1084 (  date_in         PGUID 11 f t f 1 f 1082 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1085 (  date_out        PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1086 (  date_eq         PGUID 11 f t f 2 f 16 "1082 1082" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1087 (  date_lt         PGUID 11 f t f 2 f 16 "1082 1082" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1088 (  date_le         PGUID 11 f t f 2 f 16 "1082 1082" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1089 (  date_gt         PGUID 11 f t f 2 f 16 "1082 1082" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1090 (  date_ge         PGUID 11 f t f 2 f 16 "1082 1082" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1091 (  date_ne         PGUID 11 f t f 2 f 16 "1082 1082" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1092 (  date_cmp        PGUID 11 f t f 2 f 23 "1082 1082" 100 0 0 100  foo bar ));
+DESCR("");
 
 /* OIDS 1100 - 1199 */
 
 DATA(insert OID = 1102 (  time_lt         PGUID 11 f t f 2 f 16 "1083 1083" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1103 (  time_le         PGUID 11 f t f 2 f 16 "1083 1083" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1104 (  time_gt         PGUID 11 f t f 2 f 16 "1083 1083" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1105 (  time_ge         PGUID 11 f t f 2 f 16 "1083 1083" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1106 (  time_ne         PGUID 11 f t f 2 f 16 "1083 1083" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1107 (  time_cmp        PGUID 11 f t f 2 f 23 "1083 1083" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1138 (  date_larger     PGUID 11 f t f 2 f 1082 "1082 1082" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1139 (  date_smaller    PGUID 11 f t f 2 f 1082 "1082 1082" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1140 (  date_mi         PGUID 11 f t f 2 f 23 "1082 1082" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1141 (  date_pli        PGUID 11 f t f 2 f 1082 "1082 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1142 (  date_mii        PGUID 11 f t f 2 f 1082 "1082 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1143 (  time_in         PGUID 11 f t f 1 f 1083 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1144 (  time_out        PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1145 (  time_eq         PGUID 11 f t f 2 f 16 "1083 1083" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 1146 (  circle_add_pt    PGUID 11 f t f 2 f 718 "718 600" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1147 (  circle_sub_pt    PGUID 11 f t f 2 f 718 "718 600" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1148 (  circle_mul_pt    PGUID 11 f t f 2 f 718 "718 600" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1149 (  circle_div_pt    PGUID 11 f t f 2 f 718 "718 600" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 1150 (  datetime_in     PGUID 11 f t f 1 f 1184 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1151 (  datetime_out    PGUID 11 f t f 1 f   23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1152 (  datetime_eq     PGUID 11 f t f 2 f   16 "1184 1184" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1153 (  datetime_ne     PGUID 11 f t f 2 f   16 "1184 1184" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1154 (  datetime_lt     PGUID 11 f t f 2 f   16 "1184 1184" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1155 (  datetime_le     PGUID 11 f t f 2 f   16 "1184 1184" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1156 (  datetime_ge     PGUID 11 f t f 2 f   16 "1184 1184" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1157 (  datetime_gt     PGUID 11 f t f 2 f   16 "1184 1184" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1158 (  datetime_finite  PGUID 11 f t f 1 f  16 "1184" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1159 (  datetime_zone    PGUID 11 f t f 2 f  25 "25 1184" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 1160 (  timespan_in     PGUID 11 f t f 1 f 1186 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1161 (  timespan_out    PGUID 11 f t f 1 f 23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1162 (  timespan_eq     PGUID 11 f t f 2 f 16 "1186 1186" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1163 (  timespan_ne     PGUID 11 f t f 2 f 16 "1186 1186" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1164 (  timespan_lt     PGUID 11 f t f 2 f 16 "1186 1186" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1165 (  timespan_le     PGUID 11 f t f 2 f 16 "1186 1186" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1166 (  timespan_ge     PGUID 11 f t f 2 f 16 "1186 1186" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1167 (  timespan_gt     PGUID 11 f t f 2 f 16 "1186 1186" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1168 (  timespan_um     PGUID 11 f t f 1 f 1186 "1186" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1169 (  timespan_pl    PGUID 11 f t f 2 f 1186 "1186 1186" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1170 (  timespan_mi    PGUID 11 f t f 2 f 1186 "1186 1186" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1171 (  datetime_part    PGUID 11 f t f 2 f  701 "25 1184" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1172 (  timespan_part    PGUID 11 f t f 2 f  701 "25 1186" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 1173 (  abstime_datetime  PGUID 11 f t f 1 f 1184  "702" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1174 (  date_datetime         PGUID 11 f t f 1 f 1184 "1082" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1175 (  stamp_datetime     PGUID 11 f t f 1 f 1184 "1296" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1176 (  datet_datetime     PGUID 11 f t f 2 f 1184 "1082 1083" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1177 (  reltime_timespan  PGUID 11 f t f 1 f 1186  "703" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1178 (  datetime_date         PGUID 11 f t f 1 f 1082 "1184" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1179 (  abstime_date      PGUID 11 f t f 1 f 1082  "702" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1180 (  datetime_abstime  PGUID 11 f t f 1 f  702 "1184" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 1188 (  datetime_mi      PGUID 11 f t f 2 f 1186 "1184 1184" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1189 (  datetime_pl_span PGUID 11 f t f 2 f 1184 "1184 1186" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1190 (  datetime_mi_span PGUID 11 f t f 2 f 1184 "1184 1186" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1191 (  text_datetime         PGUID 11 f t f 1 f 1184 "25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1192 (  datetime_text         PGUID 11 f t f 1 f   25 "1184" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1193 (  timespan_text         PGUID 11 f t f 1 f 1186 "25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1194 (  timespan_reltime  PGUID 11 f t f 1 f  703 "1186" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1195 (  datetime_smaller  PGUID 11 f t f 2 f 1184 "1184 1184" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1196 (  datetime_larger   PGUID 11 f t f 2 f 1184 "1184 1184" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1197 (  timespan_smaller  PGUID 11 f t f 2 f 1186 "1186 1186" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1198 (  timespan_larger   PGUID 11 f t f 2 f 1186 "1186 1186" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1199 (  datetime_age      PGUID 11 f t f 2 f 1186 "1184 1184" 100 0 0 100  foo bar ));
+DESCR("");
 
 /* OIDS 1200 - 1299 */
 
 DATA(insert OID = 1200 (  int42reltime    PGUID 11 f t f 1 f  703 "21" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 1217 (  datetime_trunc   PGUID 11 f t f 2 f 1184 "25 1184" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1218 (  timespan_trunc   PGUID 11 f t f 2 f 1186 "25 1186" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 1290 (  char2icregexeq   PGUID 11 f t f 2 f 16 "409 25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1291 (  char2icregexne   PGUID 11 f t f 2 f 16 "409 25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1292 (  char4icregexeq   PGUID 11 f t f 2 f 16 "410 25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1293 (  char4icregexne   PGUID 11 f t f 2 f 16 "410 25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1294 (  char8icregexeq   PGUID 11 f t f 2 f 16 "411 25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1295 (  char8icregexne   PGUID 11 f t f 2 f 16 "411 25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1236 (  char16icregexeq  PGUID 11 f t f 2 f 16 "20 25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1237 (  char16icregexne  PGUID 11 f t f 2 f 16 "20 25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1238 (  texticregexeq    PGUID 11 f t f 2 f 16 "25 25" 100 0 1 0 foo bar ));
+DESCR("");
 DATA(insert OID = 1239 (  texticregexne    PGUID 11 f t f 2 f 16 "25 25" 100 0 1 0 foo bar ));
+DESCR("");
 DATA(insert OID = 1240 (  nameicregexeq    PGUID 11 f t f 2 f 16 "19 25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1241 (  nameicregexne    PGUID 11 f t f 2 f 16 "19 25" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 1297 (  timestamp_in    PGUID 11 f t f 1 f 1296 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1298 (  timestamp_out    PGUID 11 f t f 1 f   23 "0" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1299 (  now             PGUID 11 f t f 0 f 1296 "0" 100 0 0 100  foo bar ));
+DESCR("");
 
 /* OIDS 1300 - 1399 */
 
 DATA(insert OID = 1306 (  timestampeq     PGUID 11 f t f 2 f   16 "1296 1296" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1307 (  timestampne     PGUID 11 f t f 2 f   16 "1296 1296" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1308 (  timestamplt     PGUID 11 f t f 2 f   16 "1296 1296" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1309 (  timestampgt     PGUID 11 f t f 2 f   16 "1296 1296" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1310 (  timestample     PGUID 11 f t f 2 f   16 "1296 1296" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1311 (  timestampge     PGUID 11 f t f 2 f   16 "1296 1296" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1314 (  datetime_cmp    PGUID 11 f t f 2 f   23 "1184 1184" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1315 (  timespan_cmp    PGUID 11 f t f 2 f   23 "1186 1186" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1316 (  datetime_time       PGUID 11 f t f 1 f 1083 "1184" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1318 (  datetime_stamp   PGUID 11 f t f 1 f 1296 "1184" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1326 (  timespan_div    PGUID 11 f t f 2 f 1186 "1186 701" 100 0 0 100   foo bar ));
+DESCR("");
 
 DATA(insert OID = 1339 (  date_zone    PGUID 14 f t f 2 f  25 "25 1184" 100 0 0 100  "select datetime_zone($1, $2)" - ));
+DESCR("");
 DATA(insert OID = 1340 (  text        PGUID 14 f t f 1 f   25 "1184" 100 0 0 100  "select datetime_text($1)" - ));
+DESCR("");
 DATA(insert OID = 1341 (  text        PGUID 14 f t f 1 f   25 "1186" 100 0 0 100  "select timespan_text($1)" - ));
+DESCR("");
 DATA(insert OID = 1342 (  text        PGUID 14 f t f 1 f   25 "23" 100 0 0 100  "select int4_text($1)" - ));
+DESCR("");
 DATA(insert OID = 1343 (  text        PGUID 14 f t f 1 f   25 "21" 100 0 0 100  "select int2_text($1)" - ));
+DESCR("");
 DATA(insert OID = 1344 (  text        PGUID 14 f t f 1 f   25 "26" 100 0 0 100  "select oid_text($1)" - ));
+DESCR("");
 DATA(insert OID = 1345 (  oid         PGUID 14 f t f 1 f   26 "25" 100 0 0 100  "select text_oid($1)" - ));
+DESCR("");
 DATA(insert OID = 1346 (  int2        PGUID 14 f t f 1 f   21 "25" 100 0 0 100  "select text_int2($1)" - ));
+DESCR("");
 DATA(insert OID = 1347 (  int4        PGUID 14 f t f 1 f   23 "25" 100 0 0 100  "select text_int4($1)" - ));
+DESCR("");
 
 DATA(insert OID = 1350 (  datetime    PGUID 14 f t f 1 f 1184 "1184" 100 0 0 100  "select $1" - ));
+DESCR("");
 DATA(insert OID = 1351 (  datetime    PGUID 14 f t f 1 f 1184   "25" 100 0 0 100  "select text_datetime($1)" - ));
+DESCR("");
 DATA(insert OID = 1352 (  datetime    PGUID 14 f t f 1 f 1184  "702" 100 0 0 100  "select abstime_datetime($1)" - ));
+DESCR("");
 DATA(insert OID = 1353 (  datetime    PGUID 14 f t f 1 f 1184 "1082" 100 0 0 100  "select date_datetime($1)" - ));
+DESCR("");
 DATA(insert OID = 1354 (  datetime    PGUID 14 f t f 1 f 1184 "1296" 100 0 0 100  "select stamp_datetime($1)" - ));
+DESCR("");
 DATA(insert OID = 1355 (  datetime    PGUID 14 f t f 2 f 1184 "1082 1083" 100 0 0 100  "select datet_datetime($1, $2)" - ));
+DESCR("");
 DATA(insert OID = 1356 (  timespan    PGUID 14 f t f 1 f 1186 "1186" 100 0 0 100  "select $1" - ));
+DESCR("");
 DATA(insert OID = 1357 (  timespan    PGUID 14 f t f 1 f 1186  "703" 100 0 0 100  "select reltime_timespan($1)" - ));
+DESCR("");
 DATA(insert OID = 1358 (  timespan    PGUID 14 f t f 1 f 1186 "1083" 100 0 0 100  "select time_timespan($1)" - ));
+DESCR("");
 DATA(insert OID = 1359 (  date        PGUID 14 f t f 1 f 1082 "1082" 100 0 0 100  "select $1" - ));
+DESCR("");
 DATA(insert OID = 1360 (  date        PGUID 14 f t f 1 f 1082 "1184" 100 0 0 100  "select datetime_date($1)" - ));
+DESCR("");
 DATA(insert OID = 1361 (  date        PGUID 14 f t f 1 f 1082  "702" 100 0 0 100  "select abstime_date($1)" - ));
+DESCR("");
 DATA(insert OID = 1362 (  time        PGUID 14 f t f 1 f 1083 "1083" 100 0 0 100  "select $1" - ));
+DESCR("");
 DATA(insert OID = 1363 (  time        PGUID 14 f t f 1 f 1083 "1184" 100 0 0 100  "select datetime_time($1)" - ));
+DESCR("");
 DATA(insert OID = 1364 (  time        PGUID 14 f t f 1 f 1083  "702" 100 0 0 100  "select abstime_time($1)" - ));
+DESCR("");
 DATA(insert OID = 1365 (  abstime     PGUID 14 f t f 1 f  702  "702" 100 0 0 100  "select $1" - ));
+DESCR("");
 DATA(insert OID = 1366 (  abstime     PGUID 14 f t f 1 f  702 "1184" 100 0 0 100  "select datetime_abstime($1)" - ));
+DESCR("");
 DATA(insert OID = 1367 (  reltime     PGUID 14 f t f 1 f  703  "703" 100 0 0 100  "select $1" - ));
+DESCR("");
 DATA(insert OID = 1368 (  reltime     PGUID 14 f t f 1 f  703 "1186" 100 0 0 100  "select timespan_reltime($1)" - ));
+DESCR("");
 DATA(insert OID = 1369 (  timestamp    PGUID 14 f t f 1 f 1296 "1296" 100 0 0 100  "select $1" - ));
+DESCR("");
 DATA(insert OID = 1370 (  timestamp    PGUID 14 f t f 1 f 1296 "1184" 100 0 0 100  "select datetime_stamp($1)" - ));
+DESCR("");
 
 DATA(insert OID = 1380 (  date_part    PGUID 14 f t f 2 f  701 "25 1184" 100 0 0 100  "select datetime_part($1, $2)" - ));
+DESCR("");
 DATA(insert OID = 1381 (  date_part    PGUID 14 f t f 2 f  701 "25 1186" 100 0 0 100  "select timespan_part($1, $2)" - ));
+DESCR("");
 DATA(insert OID = 1382 (  date_part    PGUID 14 f t f 2 f  701 "25 702" 100 0 0 100  "select datetime_part($1, datetime($2))" - ));
+DESCR("");
 DATA(insert OID = 1383 (  date_part    PGUID 14 f t f 2 f  701 "25 703" 100 0 0 100  "select timespan_part($1, timespan($2))" - ));
+DESCR("");
 DATA(insert OID = 1384 (  date_part    PGUID 14 f t f 2 f  701 "25 1082" 100 0 0 100  "select datetime_part($1, datetime($2))" - ));
+DESCR("");
 DATA(insert OID = 1385 (  date_part    PGUID 14 f t f 2 f  701 "25 1083" 100 0 0 100  "select timespan_part($1, timespan($2))" - ));
+DESCR("");
 DATA(insert OID = 1386 (  date_trunc   PGUID 14 f t f 2 f 1184 "25 1184" 100 0 0 100  "select datetime_trunc($1, $2)" - ));
+DESCR("");
 DATA(insert OID = 1387 (  date_trunc   PGUID 14 f t f 2 f 1186 "25 1186" 100 0 0 100  "select timespan_trunc($1, $2)" - ));
+DESCR("");
 DATA(insert OID = 1388 (  age         PGUID 14 f t f 2 f 1186 "1184 1184" 100 0 0 100  "select datetime_age($1, $2)" - ));
+DESCR("");
 DATA(insert OID = 1389 (  age         PGUID 14 f t f 1 f 1186 "1184" 100 0 0 100  "select datetime_age(\'today\', $1)" - ));
+DESCR("");
 
 DATA(insert OID = 1390 (  isfinite    PGUID 14 f t f 1 f   16 "1184" 100 0 0 100  "select datetime_finite($1)" - ));
+DESCR("");
 DATA(insert OID = 1391 (  isfinite    PGUID 14 f t f 1 f   16 "1186" 100 0 0 100  "select timespan_finite($1)" - ));
+DESCR("");
 DATA(insert OID = 1392 (  isfinite    PGUID 14 f t f 1 f   16  "702" 100 0 0 100  "select abstime_finite($1)" - ));
+DESCR("");
 /* reserve OIDs 1370-1399 for additional date/time conversion routines! tgl 97/04/01 */
 
 /* OIDS 1400 - 1499 */
 
 DATA(insert OID = 1400 (  float           PGUID 14 f t f 1 f  701  "701" 100 0 0 100  "select $1" - ));
+DESCR("");
 DATA(insert OID = 1401 (  float           PGUID 14 f t f 1 f  701  "700" 100 0 0 100  "select ftod($1)" - ));
+DESCR("");
 DATA(insert OID = 1402 (  float4      PGUID 14 f t f 1 f  700  "700" 100 0 0 100  "select $1" - ));
+DESCR("");
 DATA(insert OID = 1403 (  float4      PGUID 14 f t f 1 f  700  "701" 100 0 0 100  "select dtof($1)" - ));
+DESCR("");
 DATA(insert OID = 1404 (  int         PGUID 14 f t f 1 f   23   "23" 100 0 0 100  "select $1" - ));
+DESCR("");
 DATA(insert OID = 1405 (  int2        PGUID 14 f t f 1 f   21   "21" 100 0 0 100  "select $1" - ));
+DESCR("");
 
 DATA(insert OID = 1406 (  float8      PGUID 14 f t f 1 f  701  "701" 100 0 0 100  "select $1" - ));
+DESCR("");
 DATA(insert OID = 1407 (  float8      PGUID 14 f t f 1 f  701  "700" 100 0 0 100  "select ftod($1)" - ));
+DESCR("");
 DATA(insert OID = 1408 (  float8      PGUID 14 f t f 1 f  701   "23" 100 0 0 100  "select i4tod($1)" - ));
+DESCR("");
 DATA(insert OID = 1409 (  float8      PGUID 14 f t f 1 f  701   "21" 100 0 0 100  "select i2tod($1)" - ));
+DESCR("");
 DATA(insert OID = 1410 (  float4      PGUID 14 f t f 1 f  700   "23" 100 0 0 100  "select i4tof($1)" - ));
+DESCR("");
 DATA(insert OID = 1411 (  float4      PGUID 14 f t f 1 f  700   "21" 100 0 0 100  "select i2tof($1)" - ));
+DESCR("");
 DATA(insert OID = 1412 (  int4        PGUID 14 f t f 1 f   23   "23" 100 0 0 100  "select $1" - ));
+DESCR("");
 DATA(insert OID = 1413 (  int4        PGUID 14 f t f 1 f   23  "701" 100 0 0 100  "select dtoi4($1)" - ));
+DESCR("");
 DATA(insert OID = 1414 (  int4        PGUID 14 f t f 1 f   23   "21" 100 0 0 100  "select i2toi4($1)" - ));
+DESCR("");
 DATA(insert OID = 1415 (  int4        PGUID 14 f t f 1 f   23  "700" 100 0 0 100  "select ftoi4($1)" - ));
+DESCR("");
 DATA(insert OID = 1416 (  int2        PGUID 14 f t f 1 f   21   "21" 100 0 0 100  "select $1" - ));
+DESCR("");
 DATA(insert OID = 1417 (  int2        PGUID 14 f t f 1 f   21   "23" 100 0 0 100  "select i4toi2($1)" - ));
+DESCR("");
 DATA(insert OID = 1418 (  int2        PGUID 14 f t f 1 f   21  "701" 100 0 0 100  "select dtoi2($1)" - ));
+DESCR("");
 DATA(insert OID = 1419 (  int2        PGUID 14 f t f 1 f   21  "700" 100 0 0 100  "select ftoi2($1)" - ));
+DESCR("");
 
 DATA(insert OID = 1421 (  box              PGUID 11 f t f 2 f 603 "600 600" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1422 (  box_add          PGUID 11 f t f 2 f 603 "603 600" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1423 (  box_sub          PGUID 11 f t f 2 f 603 "603 600" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1424 (  box_mul          PGUID 11 f t f 2 f 603 "603 600" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1425 (  box_div          PGUID 11 f t f 2 f 603 "603 600" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1426 (  path_contain_pt  PGUID 11 f t f 2 f  16 "601 600" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1427 (  pt_contained_path PGUID 11 f t f 2 f 16 "600 601" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1428 (  poly_contain_pt  PGUID 11 f t f 2 f  16 "604 600" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1429 (  pt_contained_poly PGUID 11 f t f 2 f 16 "600 604" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 1430 (  path_isclosed        PGUID 11 f t f 1 f  16 "602" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1431 (  path_isopen      PGUID 11 f t f 1 f  16 "602" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1432 (  path_npoints     PGUID 11 f t f 1 f  23 "602" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1433 (  path_close       PGUID 11 f t f 1 f 602 "602" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1434 (  path_open            PGUID 11 f t f 1 f 602 "602" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1435 (  path_add         PGUID 11 f t f 2 f 602 "602 602" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1436 (  path_add_pt      PGUID 11 f t f 2 f 602 "602 600" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1437 (  path_sub_pt      PGUID 11 f t f 2 f 602 "602 600" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1438 (  path_mul_pt      PGUID 11 f t f 2 f 602 "602 600" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1439 (  path_div_pt      PGUID 11 f t f 2 f 602 "602 600" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 1440 (  point                PGUID 11 f t f 2 f 600 "701 701" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1441 (  point_add            PGUID 11 f t f 2 f 600 "600 600" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1442 (  point_sub            PGUID 11 f t f 2 f 600 "600 600" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1443 (  point_mul            PGUID 11 f t f 2 f 600 "600 600" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1444 (  point_div            PGUID 11 f t f 2 f 600 "600 600" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 1445 (  poly_npoints     PGUID 11 f t f 1 f  23 "604" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1446 (  poly_box         PGUID 11 f t f 1 f 603 "604" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1447 (  poly_path            PGUID 11 f t f 1 f 602 "604" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1448 (  box_poly         PGUID 11 f t f 1 f 604 "603" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID = 1449 (  path_poly            PGUID 11 f t f 1 f 604 "602" 100 0 0 100  foo bar ));
+DESCR("");
 
 DATA(insert OID = 1450 (  circle_in            PGUID 11 f t f 1 f 718 "0" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 1451 (  circle_out       PGUID 11 f t f 1 f  23  "0" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 1452 (  circle_same      PGUID 11 f t f 2 f  16 "718 718" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 1453 (  circle_contain   PGUID 11 f t f 2 f  16 "718 718" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 1454 (  circle_left      PGUID 11 f t f 2 f  16 "718 718" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 1455 (  circle_overleft  PGUID 11 f t f 2 f  16 "718 718" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 1456 (  circle_overright PGUID 11 f t f 2 f  16 "718 718" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 1457 (  circle_right     PGUID 11 f t f 2 f  16 "718 718" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 1458 (  circle_contained PGUID 11 f t f 2 f  16 "718 718" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 1459 (  circle_overlap   PGUID 11 f t f 2 f  16 "718 718" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 1460 (  circle_below     PGUID 11 f t f 2 f  16 "718 718" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 1461 (  circle_above     PGUID 11 f t f 2 f  16 "718 718" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 1462 (  circle_eq            PGUID 11 f t f 2 f  16 "718 718" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 1463 (  circle_ne            PGUID 11 f t f 2 f  16 "718 718" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 1464 (  circle_lt            PGUID 11 f t f 2 f  16 "718 718" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 1465 (  circle_gt            PGUID 11 f t f 2 f  16 "718 718" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 1466 (  circle_le            PGUID 11 f t f 2 f  16 "718 718" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 1467 (  circle_ge            PGUID 11 f t f 2 f  16 "718 718" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 1468 (  circle_area      PGUID 11 f t f 1 f 701 "718" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 1469 (  circle_diameter  PGUID 11 f t f 1 f 701 "718" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 1470 (  circle_radius        PGUID 11 f t f 1 f 701 "718" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 1471 (  circle_distance  PGUID 11 f t f 2 f 701 "718 718" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 1472 (  circle_center        PGUID 11 f t f 1 f 600 "718" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 1473 (  circle           PGUID 11 f t f 2 f 718 "600 701" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 1474 (  poly_circle      PGUID 11 f t f 1 f 718 "604" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 1475 (  circle_poly      PGUID 11 f t f 2 f 604 "23 718" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 1476 (  dist_pc          PGUID 11 f t f 2 f 604 "600 718" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 1477 (  circle_contain_pt   PGUID 11 f t f 2 f  16 "718 600" 100 0 0 100 foo bar ));
+DESCR("");
 DATA(insert OID = 1478 (  pt_contained_circle PGUID 11 f t f 2 f  16 "600 718" 100 0 0 100 foo bar ));
+DESCR("");
 DATA(insert OID = 1479 (  box_circle       PGUID 11 f t f 1 f 718 "603" 100 0 1 0  foo bar ));
+DESCR("");
 DATA(insert OID = 1480 (  circle_box       PGUID 11 f t f 1 f 603 "718" 100 0 1 0  foo bar ));
+DESCR("");
 
 DATA(insert OID = 1530 (  point                PGUID 14 f t f 2 f 600 "601 601" 100 0 0 100  "select lseg_interpt($1, $2)" - ));
+DESCR("");
 DATA(insert OID = 1531 (  point                PGUID 14 f t f 1 f 600 "718" 100 0 0 100  "select circle_center($1)" - ));
+DESCR("");
 DATA(insert OID = 1532 (  isvertical       PGUID 14 f t f 2 f  16 "600 600" 100 0 0 100  "select point_vert($1, $2)" - ));
+DESCR("");
 DATA(insert OID = 1533 (  ishorizontal     PGUID 14 f t f 2 f  16 "600 600" 100 0 0 100  "select point_horiz($1, $2)" - ));
+DESCR("");
 DATA(insert OID = 1534 (  slope                PGUID 14 f t f 2 f 701 "600 600" 100 0 0 100  "select point_slope($1, $2)" - ));
+DESCR("");
 
 DATA(insert OID = 1540 (  lseg             PGUID 14 f t f 2 f 601 "600 600" 100 0 0 100  "select lseg_construct($1, $2)" - ));
+DESCR("");
 DATA(insert OID = 1541 (  lseg             PGUID 14 f t f 1 f 601 "603" 100 0 0 100  "select box_diagonal($1)" - ));
+DESCR("");
 DATA(insert OID = 1542 (  isparallel       PGUID 14 f t f 2 f  16 "601 601" 100 0 0 100  "select lseg_parallel($1, $2)" - ));
+DESCR("");
 DATA(insert OID = 1543 (  isperpendicular  PGUID 14 f t f 2 f  16 "601 601" 100 0 0 100  "select lseg_perp($1, $2)" - ));
+DESCR("");
 DATA(insert OID = 1544 (  isvertical       PGUID 14 f t f 1 f  16 "601" 100 0 0 100  "select lseg_vertical($1)" - ));
+DESCR("");
 DATA(insert OID = 1545 (  ishorizontal     PGUID 14 f t f 1 f  16 "601" 100 0 0 100  "select lseg_horizontal($1)" - ));
+DESCR("");
 
 /* pclose and popen might better be named close and open, but that crashes initdb.
  * - tgl 97/04/20
  */
 
 DATA(insert OID = 1550 (  path             PGUID 14 f t f 1 f 602 "604" 100 0 0 100  "select poly_path($1)" - ));
+DESCR("");
 DATA(insert OID = 1551 (  length           PGUID 14 f t f 1 f 701 "602" 100 0 1 0  "select path_length($1)" - ));
+DESCR("");
 DATA(insert OID = 1552 (  points           PGUID 14 f t f 1 f  23 "602" 100 0 0 100  "select path_npoints($1)" - ));
+DESCR("");
 DATA(insert OID = 1553 (  pclose           PGUID 14 f t f 1 f 602 "602" 100 0 0 100  "select path_close($1)" - ));
+DESCR("");
 DATA(insert OID = 1554 (  popen                PGUID 14 f t f 1 f 602 "602" 100 0 0 100  "select path_open($1)" - ));
+DESCR("");
 DATA(insert OID = 1555 (  isopen           PGUID 14 f t f 1 f  16 "602" 100 0 0 100  "select path_isopen($1)" - ));
+DESCR("");
 DATA(insert OID = 1556 (  isclosed         PGUID 14 f t f 1 f  16 "602" 100 0 0 100  "select path_isclosed($1)" - ));
+DESCR("");
 
 DATA(insert OID = 1560 (  box              PGUID 14 f t f 2 f 603 "603 603" 100 0 0 100  "select box_intersect($1, $2)" - ));
+DESCR("");
 DATA(insert OID = 1561 (  box              PGUID 14 f t f 1 f 603 "604" 100 0 0 100  "select poly_box($1)" - ));
+DESCR("");
 DATA(insert OID = 1562 (  width                PGUID 14 f t f 1 f 701 "603" 100 0 0 100  "select box_width($1)" - ));
+DESCR("");
 DATA(insert OID = 1563 (  height           PGUID 14 f t f 1 f 701 "603" 100 0 0 100  "select box_height($1)" - ));
+DESCR("");
 DATA(insert OID = 1564 (  center           PGUID 14 f t f 1 f 600 "603" 100 0 0 100  "select box_center($1)" - ));
+DESCR("");
 DATA(insert OID = 1565 (  area             PGUID 14 f t f 1 f 701 "603" 100 0 0 100  "select box_area($1)" - ));
+DESCR("");
 DATA(insert OID = 1569 (  box              PGUID 14 f t f 1 f 603 "718" 100 0 0 100  "select circle_box($1)" - ));
+DESCR("");
 
 DATA(insert OID = 1570 (  polygon          PGUID 14 f t f 1 f 604 "602" 100 0 0 100  "select path_poly($1)" - ));
+DESCR("");
 DATA(insert OID = 1571 (  polygon          PGUID 14 f t f 1 f 604 "603" 100 0 0 100  "select box_poly($1)" - ));
+DESCR("");
 DATA(insert OID = 1572 (  polygon          PGUID 14 f t f 2 f 604 "23 718" 100 0 0 100  "select circle_poly($1, $2)" - ));
+DESCR("");
 DATA(insert OID = 1573 (  polygon          PGUID 14 f t f 1 f 604 "718" 100 0 0 100  "select circle_poly(12, $1)" - ));
+DESCR("");
 DATA(insert OID = 1574 (  points           PGUID 14 f t f 1 f  23 "604" 100 0 0 100  "select poly_npoints($1)" - ));
+DESCR("");
 DATA(insert OID = 1575 (  center           PGUID 14 f t f 1 f 600 "604" 100 0 0 100  "select poly_center($1)" - ));
+DESCR("");
 
 DATA(insert OID = 1579 (  circle           PGUID 14 f t f 1 f 718 "603" 100 0 0 100  "select box_circle($1)" - ));
+DESCR("");
 DATA(insert OID = 1580 (  circle           PGUID 14 f t f 1 f 718 "604" 100 0 0 100  "select poly_circle($1)" - ));
+DESCR("");
 DATA(insert OID = 1581 (  center           PGUID 14 f t f 1 f 600 "718" 100 0 0 100  "select circle_center($1)" - ));
+DESCR("");
 DATA(insert OID = 1582 (  radius           PGUID 14 f t f 1 f 701 "718" 100 0 0 100  "select circle_radius($1)" - ));
+DESCR("");
 DATA(insert OID = 1583 (  diameter         PGUID 14 f t f 1 f 701 "718" 100 0 0 100  "select circle_diameter($1)" - ));
+DESCR("");
 DATA(insert OID = 1584 (  area             PGUID 14 f t f 1 f 701 "718" 100 0 0 100  "select circle_area($1)" - ));
+DESCR("");
 
 /* Oracle Compatibility Related Functions - By Edmund Mergl  */
 DATA(insert OID =  868 (  strpos      PGUID 14 f t f 2 f 23 "25 25" 100 0 0 100  "select textpos($1, $2)" - ));
+DESCR("");
 
 DATA(insert OID =  869 (  trim        PGUID 14 f t f 1 f 25 "25" 100 0 0 100  "select btrim($1, \' \')" - ));
+DESCR("");
 DATA(insert OID =  870 (  lower           PGUID 11 f t f 1 f 25 "25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  871 (  upper           PGUID 11 f t f 1 f 25 "25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  872 (  initcap     PGUID 11 f t f 1 f 25 "25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  873 (  lpad        PGUID 11 f t f 3 f 25 "25 23 25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  874 (  rpad        PGUID 11 f t f 3 f 25 "25 23 25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  875 (  ltrim           PGUID 11 f t f 2 f 25 "25 25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  876 (  rtrim           PGUID 11 f t f 2 f 25 "25 25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  877 (  substr      PGUID 11 f t f 3 f 25 "25 23 23" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  878 (  translate    PGUID 11 f t f 3 f 25 "25 18 18" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  879 (  lpad        PGUID 14 f t f 2 f 25 "25 23" 100 0 0 100  "select lpad($1, $2, \' \')" - ));
+DESCR("");
 DATA(insert OID =  880 (  rpad        PGUID 14 f t f 2 f 25 "25 23" 100 0 0 100  "select rpad($1, $2, \' \')" - ));
+DESCR("");
 DATA(insert OID =  881 (  ltrim           PGUID 14 f t f 1 f 25 "25" 100 0 0 100  "select ltrim($1, \' \')" - ));
+DESCR("");
 DATA(insert OID =  882 (  rtrim           PGUID 14 f t f 1 f 25 "25" 100 0 0 100  "select rtrim($1, \' \')" - ));
+DESCR("");
 DATA(insert OID =  883 (  substr      PGUID 14 f t f 2 f 25 "25 23" 100 0 0 100  "select substr($1, $2, 10000)" - ));
+DESCR("");
 DATA(insert OID =  884 (  btrim           PGUID 11 f t f 2 f 25 "25 25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  885 (  btrim           PGUID 14 f t f 1 f 25 "25" 100 0 0 100  "select btrim($1, \' \')" - ));
+DESCR("");
 
 /* SEQUENCEs nextval & currval functions */
 DATA(insert OID =  1317 (  nextval    PGUID 11 f t f 1 f 23 "25" 100 0 0 100  foo bar ));
+DESCR("");
 DATA(insert OID =  1319 (  currval    PGUID 11 f t f 1 f 23 "25" 100 0 0 100  foo bar ));
+DESCR("");
 #define SeqNextValueRegProcedure 1317
 #define SeqCurrValueRegProcedure 1319
 
index 0fde6eafe130dffedafd627d869252726797159d..dfabcbde44a6cdb502a8c905b54a3b21c7a33789 100644 (file)
@@ -7,7 +7,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: pg_type.h,v 1.20 1997/11/02 15:27:03 vadim Exp $
+ * $Id: pg_type.h,v 1.21 1997/11/13 03:23:09 momjian Exp $
  *
  * NOTES
  *   the genbki.sh script reads this file and generates .bki
@@ -151,20 +151,27 @@ typedef TypeTupleFormData *TypeTupleForm;
 
 /* OIDS 1 - 99 */
 DATA(insert OID = 16 ( bool       PGUID  1   1 t b t \054 0   0 boolin boolout boolin boolout c _null_ ));
+DESCR("");
 #define BOOLOID            16
 
 DATA(insert OID = 17 ( bytea      PGUID -1  -1 f b t \054 0  18 byteain byteaout byteain byteaout i _null_ ));
+DESCR("");
 DATA(insert OID = 18 ( char       PGUID  1   1 t b t \054 0   0 charin charout charin charout c _null_ ));
+DESCR("");
 #define CHAROID 18
 
 DATA(insert OID = 19 ( name       PGUID NAMEDATALEN NAMEDATALEN  f b t \054 0  18 namein nameout namein nameout d _null_ ));
+DESCR("");
 #define NAMEOID 19
 
 DATA(insert OID = 20 ( char16     PGUID 16  16 f b t \054 0  18 char16in char16out char16in char16out i _null_ ));
+DESCR("");
 DATA(insert OID = 21 ( int2       PGUID  2   5 t b t \054 0   0 int2in int2out int2in int2out s _null_ ));
+DESCR("");
 #define INT2OID            21
 
 DATA(insert OID = 22 ( int28      PGUID 16  50 f b t \054 0  21 int28in int28out int28in int28out i _null_ ));
+DESCR("");
 /*
  * XXX -- the implementation of int28's in postgres is a hack, and will
  *       go away someday.  until that happens, there is a case (in the
@@ -175,151 +182,247 @@ DATA(insert OID = 22 (  int28      PGUID 16  50 f b t \054 0  21 int28in int28out i
 #define INT28OID       22
 
 DATA(insert OID = 23 ( int4       PGUID  4  10 t b t \054 0   0 int4in int4out int4in int4out i _null_ ));
+DESCR("");
 #define INT4OID            23
 
 DATA(insert OID = 24 ( regproc    PGUID  4  16 t b t \054 0   0 regprocin regprocout regprocin regprocout i _null_ ));
+DESCR("");
 DATA(insert OID = 25 ( text       PGUID -1  -1 f b t \054 0  18 textin textout textin textout i _null_ ));
+DESCR("");
 #define TEXTOID 25
 
 DATA(insert OID = 26 ( oid        PGUID  4  10 t b t \054 0   0 int4in int4out int4in int4out i _null_ ));
+DESCR("");
 #define OIDOID         26
 
 DATA(insert OID = 27 ( tid        PGUID  6  19 f b t \054 0   0 tidin tidout tidin tidout i _null_ ));
+DESCR("");
 DATA(insert OID = 28 ( xid        PGUID  4  12 t b t \054 0   0 xidin xidout xidin xidout i _null_ ));
+DESCR("");
 DATA(insert OID = 29 ( cid        PGUID  4  10 t b t \054 0   0 cidin cidout cidin cidout i _null_ ));
+DESCR("");
 DATA(insert OID = 30 ( oid8       PGUID 32  89 f b t \054 0  26 oid8in oid8out oid8in oid8out i _null_ ));
+DESCR("");
 DATA(insert OID = 32 ( SET        PGUID -1  -1 f r t \054 0  -1 textin textout textin textout i _null_ ));
+DESCR("");
 
 DATA(insert OID = 71 ( pg_type      PGUID 1 1 t b t \054 1247 0 foo bar foo bar c _null_));
+DESCR("");
 DATA(insert OID = 75 ( pg_attribute PGUID 1 1 t b t \054 1249 0 foo bar foo bar c _null_));
+DESCR("");
 DATA(insert OID = 76 ( pg_demon     PGUID 1 1 t b t \054 1251 0 foo bar foo bar c _null_));
+DESCR("");
 DATA(insert OID = 80 ( pg_magic     PGUID 1 1 t b t \054 1253 0 foo bar foo bar c _null_));
+DESCR("");
 DATA(insert OID = 81 ( pg_proc      PGUID 1 1 t b t \054 1255 0 foo bar foo bar c _null_));
+DESCR("");
 DATA(insert OID = 82 ( pg_server    PGUID 1 1 t b t \054 1257 0 foo bar foo bar c _null_));
+DESCR("");
 DATA(insert OID = 83 ( pg_class     PGUID 1 1 t b t \054 1259 0 foo bar foo bar c _null_));
+DESCR("");
 DATA(insert OID = 86 ( pg_user      PGUID 1 1 t b t \054 1260 0 foo bar foo bar c _null_));
+DESCR("");
 DATA(insert OID = 87 ( pg_group     PGUID 1 1 t b t \054 1261 0 foo bar foo bar c _null_));
+DESCR("");
 DATA(insert OID = 88 ( pg_database  PGUID 1 1 t b t \054 1262 0 foo bar foo bar c _null_));
+DESCR("");
 DATA(insert OID = 89 ( pg_defaults  PGUID 1 1 t b t \054 1263 0 foo bar foo bar c _null_));
+DESCR("");
 DATA(insert OID = 90 ( pg_variable  PGUID 1 1 t b t \054 1264 0 foo bar foo bar c _null_));
+DESCR("");
 DATA(insert OID = 99 ( pg_log       PGUID 1 1 t b t \054 1269 0 foo bar foo bar c _null_));
+DESCR("");
 
 /* OIDS 100 - 199 */
 
 DATA(insert OID = 101 (  pg_hosts   PGUID 1 1 t b t \054 1273 0 foo bar foo bar c _null_));
+DESCR("");
 DATA(insert OID = 109 (  pg_attrdef  PGUID 1 1 t b t \054 1215 0 foo bar foo bar c _null_));
+DESCR("");
 DATA(insert OID = 110 (  pg_relcheck PGUID 1 1 t b t \054 1216 0 foo bar foo bar c _null_));
+DESCR("");
 DATA(insert OID = 111 (  pg_trigger  PGUID 1 1 t b t \054 1219 0 foo bar foo bar c _null_));
+DESCR("");
 
 /* OIDS 200 - 299 */
 
 DATA(insert OID = 210 (  smgr     PGUID 2  12 t b t \054 0  -1 smgrin smgrout smgrin smgrout s _null_ ));
+DESCR("");
 
 /* OIDS 300 - 399 */
 
 /* OIDS 400 - 499 */
 DATA(insert OID = 409 (  char2    PGUID 2  2 t b t \054 0  18 char2in char2out char2in char2out s _null_ ));
+DESCR("");
 DATA(insert OID = 410 (  char4    PGUID 4  4 t b t \054 0  18 char4in char4out char4in char4out i _null_ ));
+DESCR("");
 DATA(insert OID = 411 (  char8    PGUID 8  8 f b t \054 0  18 char8in char8out char8in char8out i _null_ ));
+DESCR("");
 
 /* OIDS 500 - 599 */
 
 /* OIDS 600 - 699 */
 DATA(insert OID = 600 (  point    PGUID 16  24 f b t \054 0 701 point_in point_out point_in point_out d _null_ ));
+DESCR("");
 DATA(insert OID = 601 (  lseg     PGUID 32  48 f b t \054 0 600 lseg_in lseg_out lseg_in lseg_out d _null_ ));
+DESCR("");
 DATA(insert OID = 602 (  path     PGUID -1  -1 f b t \054 0 600 path_in path_out path_in path_out d _null_ ));
+DESCR("");
 DATA(insert OID = 603 (  box      PGUID 32 100 f b t \073 0 600 box_in box_out box_in box_out d _null_ ));
+DESCR("");
 DATA(insert OID = 604 (  polygon   PGUID -1  -1 f b t \054 0  -1 poly_in poly_out poly_in poly_out d _null_ ));
+DESCR("");
 DATA(insert OID = 605 (  filename  PGUID 256 -1 f b t \054 0  18 filename_in filename_out filename_in filename_out i _null_ ));
+DESCR("");
 
 DATA(insert OID = 628 (  line     PGUID 32  48 f b t \054 0 701 line_in line_out line_in line_out d _null_ ));
+DESCR("");
 DATA(insert OID = 629 (  _line    PGUID  -1 -1 f b t \054 0 628 array_in array_out array_in array_out d _null_ ));
+DESCR("");
 
 /* OIDS 700 - 799 */
 
 DATA(insert OID = 700 (  float4    PGUID  4  12 f b t \054 0   0 float4in float4out float4in float4out i _null_ ));
+DESCR("");
 #define FLOAT4OID 700
 DATA(insert OID = 701 (  float8    PGUID  8  24 f b t \054 0   0 float8in float8out float8in float8out d _null_ ));
+DESCR("");
 #define FLOAT8OID 701
 DATA(insert OID = 702 (  abstime   PGUID  4  20 t b t \054 0   0 nabstimein nabstimeout nabstimein nabstimeout i _null_ ));
+DESCR("");
 DATA(insert OID = 703 (  reltime   PGUID  4  20 t b t \054 0   0 reltimein reltimeout reltimein reltimeout i _null_ ));
+DESCR("");
 DATA(insert OID = 704 (  tinterval PGUID 12  47 f b t \054 0   0 tintervalin tintervalout tintervalin tintervalout i _null_ ));
+DESCR("");
 DATA(insert OID = 705 (  unknown   PGUID -1  -1 f b t \054 0   18 textin textout textin textout i _null_ ));
+DESCR("");
 #define UNKNOWNOID     705
 
 DATA(insert OID = 718 (  circle    PGUID  24 47 f b t \054 0   0 circle_in circle_out circle_in circle_out d _null_ ));
+DESCR("");
 DATA(insert OID = 719 (  _circle   PGUID  -1 -1 f b t \054 0  718 array_in array_out array_in array_out d _null_ ));
+DESCR("");
 DATA(insert OID = 790 (  money    PGUID   4 24 f b t \054 0    0 cash_in cash_out cash_in cash_out i _null_ ));
+DESCR("");
 #define CASHOID 790
 DATA(insert OID = 791 (  _money    PGUID  -1 -1 f b t \054 0  790 array_in array_out array_in array_out i _null_ ));
+DESCR("");
 
 /* OIDS 800 - 899 */
 DATA(insert OID = 810 (  oidint2   PGUID  6  20 f b t \054 0   0 oidint2in oidint2out oidint2in oidint2out i _null_ ));
+DESCR("");
 
 /* OIDS 900 - 999 */
 DATA(insert OID = 910 (  oidint4   PGUID  8  20 f b t \054 0   0 oidint4in oidint4out oidint4in oidint4out i _null_ ));
+DESCR("");
 DATA(insert OID = 911 (  oidname   PGUID  OIDNAMELEN OIDNAMELEN f b t \054 0   0 oidnamein oidnameout oidnamein oidnameout i _null_ ));
+DESCR("");
 
 /* OIDS 1000 - 1099 */
 DATA(insert OID = 1000 (  _bool         PGUID -1  -1 f b t \054 0  16 array_in array_out array_in array_out i _null_ ));
+DESCR("");
 DATA(insert OID = 1001 (  _bytea    PGUID -1  -1 f b t \054 0  17 array_in array_out array_in array_out i _null_ ));
+DESCR("");
 DATA(insert OID = 1002 (  _char         PGUID -1  -1 f b t \054 0  18 array_in array_out array_in array_out i _null_ ));
+DESCR("");
 DATA(insert OID = 1003 (  _name         PGUID -1  -1 f b t \054 0  19 array_in array_out array_in array_out i _null_ ));
+DESCR("");
 DATA(insert OID = 1004 (  _char16   PGUID -1  -1 f b t \054 0  20 array_in array_out array_in array_out i _null_ ));
+DESCR("");
 DATA(insert OID = 1005 (  _int2         PGUID -1  -1 f b t \054 0  21 array_in array_out array_in array_out i _null_ ));
+DESCR("");
 DATA(insert OID = 1006 (  _int28    PGUID -1  -1 f b t \054 0  22 array_in array_out array_in array_out i _null_ ));
+DESCR("");
 DATA(insert OID = 1007 (  _int4         PGUID -1  -1 f b t \054 0  23 array_in array_out array_in array_out i _null_ ));
+DESCR("");
 DATA(insert OID = 1008 (  _regproc  PGUID -1  -1 f b t \054 0  24 array_in array_out array_in array_out i _null_ ));
+DESCR("");
 DATA(insert OID = 1009 (  _text         PGUID -1  -1 f b t \054 0  25 array_in array_out array_in array_out i _null_ ));
+DESCR("");
 DATA(insert OID = 1028 (  _oid      PGUID -1  -1 f b t \054 0  26 array_in array_out array_in array_out i _null_ ));
+DESCR("");
 DATA(insert OID = 1010 (  _tid      PGUID -1  -1 f b t \054 0  27 array_in array_out array_in array_out i _null_ ));
+DESCR("");
 DATA(insert OID = 1011 (  _xid      PGUID -1  -1 f b t \054 0  28 array_in array_out array_in array_out i _null_ ));
+DESCR("");
 DATA(insert OID = 1012 (  _cid      PGUID -1  -1 f b t \054 0  29 array_in array_out array_in array_out i _null_ ));
+DESCR("");
 DATA(insert OID = 1013 (  _oid8         PGUID -1  -1 f b t \054 0  30 array_in array_out array_in array_out i _null_ ));
+DESCR("");
 DATA(insert OID = 1014 (  _lock         PGUID -1  -1 f b t \054 0  31 array_in array_out array_in array_out i _null_ ));
+DESCR("");
 DATA(insert OID = 1015 (  _stub         PGUID -1  -1 f b t \054 0  33 array_in array_out array_in array_out i _null_ ));
+DESCR("");
 DATA(insert OID = 1016 (  _ref      PGUID -1  -1 f b t \054 0 591 array_in array_out array_in array_out i _null_ ));
+DESCR("");
 DATA(insert OID = 1017 (  _point    PGUID -1  -1 f b t \054 0 600 array_in array_out array_in array_out d _null_ ));
+DESCR("");
 DATA(insert OID = 1018 (  _lseg         PGUID -1  -1 f b t \054 0 601 array_in array_out array_in array_out d _null_ ));
+DESCR("");
 DATA(insert OID = 1019 (  _path         PGUID -1  -1 f b t \054 0 602 array_in array_out array_in array_out d _null_ ));
+DESCR("");
 DATA(insert OID = 1020 (  _box      PGUID -1  -1 f b t \073 0 603 array_in array_out array_in array_out d _null_ ));
+DESCR("");
 DATA(insert OID = 1021 (  _float4   PGUID -1  -1 f b t \054 0 700 array_in array_out array_in array_out i _null_ ));
+DESCR("");
 DATA(insert OID = 1022 (  _float8   PGUID -1  -1 f b t \054 0 701 array_in array_out array_in array_out d _null_ ));
+DESCR("");
 DATA(insert OID = 1023 (  _abstime  PGUID -1  -1 f b t \054 0 702 array_in array_out array_in array_out i _null_ ));
+DESCR("");
 DATA(insert OID = 1024 (  _reltime  PGUID -1  -1 f b t \054 0 703 array_in array_out array_in array_out i _null_ ));
+DESCR("");
 DATA(insert OID = 1025 (  _tinterval PGUID -1  -1 f b t \054 0 704 array_in array_out array_in array_out i _null_ ));
+DESCR("");
 DATA(insert OID = 1026 (  _filename  PGUID -1  -1 f b t \054 0 605 array_in array_out array_in array_out i _null_ ));
+DESCR("");
 DATA(insert OID = 1027 (  _polygon  PGUID -1  -1 f b t \054 0 604 array_in array_out array_in array_out d _null_ ));
+DESCR("");
 /* Note: the size of an aclitem needs to match sizeof(AclItem) in acl.h */
 DATA(insert OID = 1033 (  aclitem   PGUID 8   -1 f b t \054 0 0 aclitemin aclitemout aclitemin aclitemout i _null_ ));
+DESCR("");
 DATA(insert OID = 1034 (  _aclitem  PGUID -1  -1 f b t \054 0 1033 array_in array_out array_in array_out i _null_ ));
+DESCR("");
 
 DATA(insert OID = 1039 (  _char2    PGUID -1  -1 f b t \054 0  409 array_in array_out array_in array_out i _null_ ));
+DESCR("");
 DATA(insert OID = 1040 (  _char4    PGUID -1  -1 f b t \054 0  410 array_in array_out array_in array_out i _null_ ));
+DESCR("");
 DATA(insert OID = 1041 (  _char8    PGUID -1  -1 f b t \054 0  411 array_in array_out array_in array_out i _null_ ));
+DESCR("");
 
 DATA(insert OID = 1042 ( bpchar         PGUID -1  -1 f b t \054 0  18 bpcharin bpcharout bpcharin bpcharout i _null_ ));
+DESCR("");
 #define BPCHAROID      1042
 DATA(insert OID = 1043 ( varchar    PGUID -1  -1 f b t \054 0  18 varcharin varcharout varcharin varcharout i _null_ ));
+DESCR("");
 #define VARCHAROID     1043
 
 DATA(insert OID = 1082 ( date       PGUID  4  10 t b t \054 0  0 date_in date_out date_in date_out i _null_ ));
+DESCR("");
 #define DATEOID            1082
 DATA(insert OID = 1083 ( time       PGUID  8  16 f b t \054 0  0 time_in time_out time_in time_out d _null_ ));
+DESCR("");
 #define TIMEOID            1083
 
 /* OIDS 1100 - 1199 */
 DATA(insert OID = 1182 ( _date      PGUID  -1 -1 f b t \054 0  1082 array_in array_out array_in array_out i _null_ ));
+DESCR("");
 DATA(insert OID = 1183 ( _time      PGUID  -1 -1 f b t \054 0  1083 array_in array_out array_in array_out d _null_ ));
+DESCR("");
 DATA(insert OID = 1184 ( datetime   PGUID  8  47 f b t \054 0  0 datetime_in datetime_out datetime_in datetime_out d _null_ ));
+DESCR("");
 #define DATETIMEOID        1184
 DATA(insert OID = 1185 ( _datetime  PGUID  -1 -1 f b t \054 0  1184 array_in array_out array_in array_out d _null_ ));
+DESCR("");
 DATA(insert OID = 1186 ( timespan   PGUID 12  47 f b t \054 0  0 timespan_in timespan_out timespan_in timespan_out d _null_ ));
+DESCR("");
 #define TIMESPANOID        1186
 DATA(insert OID = 1187 ( _timespan  PGUID  -1 -1 f b t \054 0  1186 array_in array_out array_in array_out d _null_ ));
+DESCR("");
 
 /* OIDS 1200 - 1299 */
 DATA(insert OID = 1296 ( timestamp  PGUID  4  19 t b t \054 0  0 timestamp_in timestamp_out timestamp_in timestamp_out i _null_ ));
+DESCR("");
 #define TIMESTAMPOID   1296
 
 /*
index 504bb1aaad86970408f8abdcbd9cc827e1fe68a2..fde7c6c6bb8588df802a05c473d092b472178abb 100644 (file)
@@ -6,7 +6,7 @@
  *
  * Copyright (c) 1995, Regents of the University of California
  *
- * $Id: postgres.h,v 1.10 1997/11/02 15:26:28 vadim Exp $
+ * $Id: postgres.h,v 1.11 1997/11/13 03:22:46 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -176,6 +176,7 @@ typedef uint32 CommandId;
    typedef struct CppConcat(FormData_,x)
 
 #define DATA(x) extern int errno
+#define DESCR(x) extern int errno
 #define DECLARE_INDEX(x) extern int errno
 
 #define BUILD_INDICES
index 0cdec39c29980ba90d70f342f43386e42999659e..e335bdcaf56040703d52edf57cb80a90ce89d73b 100644 (file)
@@ -1,6 +1,6 @@
 .\" This is -*-nroff-*-
 .\" XXX standard disclaimer belongs here....
-.\" $Header: /cvsroot/pgsql/src/man/Attic/psql.1,v 1.12 1997/08/26 17:30:08 momjian Exp $
+.\" $Header: /cvsroot/pgsql/src/man/Attic/psql.1,v 1.13 1997/11/13 03:23:18 momjian Exp $
 .TH PSQL UNIX 1/20/96 PostgreSQL PostgreSQL
 .SH NAME
 psql \(em run the interactive query front-end
@@ -292,10 +292,14 @@ is specified, list the columns in
 If table name is
 .IR *,
 list all tables and column information for each tables.
+.IP "\edc object"
+List the description of the table, table.column, type, operator, or aggregate.
 .IP "\edi"
 List only indexes.
 .IP "\edt"
 List only tables.
+.IP "\eds"
+List only sequences.
 .IP "\ee [\fIfilename\fR]"
 Edit the current query buffer or \fIfile\fR.
 .IP "\eE [\fIfilename\fR]"