File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 77 *
88 *
99 * IDENTIFICATION
10- * $Header: /cvsroot/pgsql/src/backend/utils/cache/syscache.c,v 1.43 1999/11/24 16:52:38 momjian Exp $
10+ * $Header: /cvsroot/pgsql/src/backend/utils/cache/syscache.c,v 1.44 1999/11/24 17:09:27 momjian Exp $
1111 *
1212 * NOTES
1313 * These routines allow the parser/planner/executor to perform
3434#include "catalog/pg_proc.h"
3535#include "catalog/pg_rewrite.h"
3636#include "catalog/pg_shadow.h"
37+ #include "catalog/pg_statistic.h"
3738#include "catalog/pg_type.h"
3839#include "utils/catcache.h"
3940#include "utils/temprel.h"
@@ -368,7 +369,7 @@ NULL,NULL
368369 },
369370 offsetof(FormData_pg_statistic , stacommonval ),
370371 StatisticRelidAttnumOpIndex ,
371- StatisticRelidAttnumOpIndexScan },
372+ ( ScanFunc ) StatisticRelidAttnumOpIndexScan },
372373 {TypeRelationName , /* TYPENAME */
373374 1 ,
374375 {
Original file line number Diff line number Diff line change 77 *
88 * Copyright (c) 1994, Regents of the University of California
99 *
10- * $Id: indexing.h,v 1.31 1999/11/24 16:52:48 momjian Exp $
10+ * $Id: indexing.h,v 1.32 1999/11/24 17:09:28 momjian Exp $
1111 *
1212 *-------------------------------------------------------------------------
1313 */
@@ -202,7 +202,7 @@ DECLARE_UNIQUE_INDEX(pg_rewrite_rulename_index on pg_rewrite using btree(rulenam
202202xDECLARE_UNIQUE_INDEX(pg_shadow_name_index on pg_shadow using btree(usename name_ops));
203203xDECLARE_UNIQUE_INDEX(pg_shadow_sysid_index on pg_shadow using btree(usesysid int4_ops));
204204*/
205- DECLARE_INDEX (pg_statistic_relid_att_op_index on pg_shadow using btree (starelid oid_ops , staattnum int2_ops , staop oid_ops ));
205+ DECLARE_INDEX (pg_statistic_relid_att_op_index on pg_statistic using btree (starelid oid_ops , staattnum int2_ops , staop oid_ops ));
206206DECLARE_INDEX (pg_trigger_tgconstrname_index on pg_trigger using btree (tgconstrname name_ops ));
207207DECLARE_INDEX (pg_trigger_tgconstrrelid_index on pg_trigger using btree (tgconstrrelid oid_ops ));
208208DECLARE_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