OSDN Git Service

Indexing of pg_trigger
authorVadim B. Mikheev <vadim4o@yahoo.com>
Sun, 31 Aug 1997 09:56:18 +0000 (09:56 +0000)
committerVadim B. Mikheev <vadim4o@yahoo.com>
Sun, 31 Aug 1997 09:56:18 +0000 (09:56 +0000)
src/backend/catalog/indexing.c

index 7776a71..2d769d5 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/backend/catalog/indexing.c,v 1.10 1997/08/21 01:32:06 vadim Exp $
+ *    $Header: /cvsroot/pgsql/src/backend/catalog/indexing.c,v 1.11 1997/08/31 09:56:18 vadim Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -41,6 +41,7 @@
  *     pg_class
  *     pg_attrdef
  *     pg_relcheck
+ *     pg_trigger
  */
 
 char *Name_pg_attr_indices[Num_pg_attr_indices] = {AttributeNameIndex,
@@ -57,6 +58,8 @@ char *Name_pg_attrdef_indices[Num_pg_attrdef_indices]= { AttrDefaultIndex };
 
 char *Name_pg_relcheck_indices[Num_pg_relcheck_indices]= { RelCheckIndex };
 
+char *Name_pg_trigger_indices[Num_pg_trigger_indices]= { TriggerRelidIndex };
+
 
 static HeapTuple CatalogIndexFetchTuple(Relation heapRelation,
                                        Relation idesc,