File tree Expand file tree Collapse file tree 2 files changed +7
-9
lines changed Expand file tree Collapse file tree 2 files changed +7
-9
lines changed Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/utils/cache/syscache.c,v 1.46 2000/01/24 02:12:56 momjian Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/utils/cache/syscache.c,v 1.47 2000/01/24 03:08:27 momjian Exp $
11
11
*
12
12
* NOTES
13
13
* These routines allow the parser/planner/executor to perform
@@ -344,9 +344,8 @@ static struct cachedesc cacheinfo[] = {
344
344
0
345
345
},
346
346
sizeof (FormData_pg_shadow ),
347
- NULL ,NULL
348
- /* ShadowNameIndex,
349
- ShadowNameIndexScan*/ },
347
+ ShadowNameIndex ,
348
+ ShadowNameIndexScan },
350
349
{ShadowRelationName , /* SHADOWSYSID */
351
350
1 ,
352
351
{
@@ -356,9 +355,8 @@ NULL,NULL
356
355
0
357
356
},
358
357
sizeof (FormData_pg_shadow ),
359
- NULL ,NULL
360
- /* ShadowSysidIndex,
361
- ShadowSysidIndexScan*/ },
358
+ ShadowSysidIndex ,
359
+ ShadowSysidIndexScan },
362
360
{StatisticRelationName , /* STATRELID */
363
361
2 ,
364
362
{
Original file line number Diff line number Diff line change 7
7
*
8
8
* Copyright (c) 1994, Regents of the University of California
9
9
*
10
- * $Id: indexing.h,v 1.34 2000/01/24 02:12:57 momjian Exp $
10
+ * $Id: indexing.h,v 1.35 2000/01/24 03:08:27 momjian Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
@@ -202,7 +202,7 @@ DECLARE_UNIQUE_INDEX(pg_rewrite_rulename_index on pg_rewrite using btree(rulenam
202
202
xDECLARE_UNIQUE_INDEX(pg_shadow_name_index on pg_shadow using btree(usename name_ops));
203
203
xDECLARE_UNIQUE_INDEX(pg_shadow_sysid_index on pg_shadow using btree(usesysid int4_ops));
204
204
*/
205
- DECLARE_INDEX (pg_statistic_relid_att_op_index on pg_statistic using btree (starelid oid_ops , staattnum int2_ops ));
205
+ DECLARE_INDEX (pg_statistic_relid_att_index on pg_statistic using btree (starelid oid_ops , staattnum int2_ops ));
206
206
DECLARE_INDEX (pg_trigger_tgconstrname_index on pg_trigger using btree (tgconstrname name_ops ));
207
207
DECLARE_INDEX (pg_trigger_tgconstrrelid_index on pg_trigger using btree (tgconstrrelid oid_ops ));
208
208
DECLARE_INDEX (pg_trigger_tgrelid_index on pg_trigger using btree (tgrelid oid_ops ));
You can’t perform that action at this time.
0 commit comments