7
7
*
8
8
* Copyright (c) 1994, Regents of the University of California
9
9
*
10
- * $Id: indexing.h,v 1.24 1999/09/29 16:06:14 wieck Exp $
10
+ * $Id: indexing.h,v 1.25 1999/09/30 10:31:44 wieck Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
20
20
* Some definitions for indices on pg_attribute
21
21
*/
22
22
#define Num_pg_attr_indices 3
23
- #define Num_pg_proc_indices 3
23
+ #define Num_pg_proc_indices 2
24
24
#define Num_pg_type_indices 2
25
25
#define Num_pg_class_indices 2
26
26
#define Num_pg_attrdef_indices 1
37
37
#define AttributeRelidIndex "pg_attribute_attrelid_index"
38
38
#define ProcedureOidIndex "pg_proc_oid_index"
39
39
#define ProcedureNameIndex "pg_proc_proname_narg_type_index"
40
- #define ProcedureSrcIndex "pg_proc_prosrc_index"
41
40
#define TypeOidIndex "pg_type_oid_index"
42
41
#define TypeNameIndex "pg_type_typname_index"
43
42
#define ClassOidIndex "pg_class_oid_index"
@@ -83,7 +82,6 @@ extern HeapTuple AttributeNumIndexScan(Relation heapRelation,
83
82
extern HeapTuple ProcedureOidIndexScan (Relation heapRelation , Oid procId );
84
83
extern HeapTuple ProcedureNameIndexScan (Relation heapRelation ,
85
84
char * procName , int2 nargs , Oid * argTypes );
86
- extern HeapTuple ProcedureSrcIndexScan (Relation heapRelation , text * procSrc );
87
85
extern HeapTuple TypeOidIndexScan (Relation heapRelation , Oid typeId );
88
86
extern HeapTuple TypeNameIndexScan (Relation heapRelation , char * typeName );
89
87
extern HeapTuple ClassNameIndexScan (Relation heapRelation , char * relName );
@@ -103,7 +101,6 @@ DECLARE_INDEX(pg_attribute_attrelid_index on pg_attribute using btree(attrelid o
103
101
104
102
DECLARE_INDEX (pg_proc_oid_index on pg_proc using btree (oid oid_ops ));
105
103
DECLARE_INDEX (pg_proc_proname_narg_type_index on pg_proc using btree (proname name_ops , pronargs int2_ops , proargtypes oid8_ops ));
106
- DECLARE_INDEX (pg_proc_prosrc_index on pg_proc using btree (prosrc text_ops ));
107
104
108
105
DECLARE_INDEX (pg_type_oid_index on pg_type using btree (oid oid_ops ));
109
106
DECLARE_INDEX (pg_type_typname_index on pg_type using btree (typname name_ops ));
0 commit comments