diff options
author | Bruce Momjian | 2000-01-24 03:08:27 +0000 |
---|---|---|
committer | Bruce Momjian | 2000-01-24 03:08:27 +0000 |
commit | 8bcac56086ec1aa1eae04879bfb22275b9396522 (patch) | |
tree | de94d2a43a9e3c27505d08471ab72381edd395a1 /src/include | |
parent | da5aba105f9b4c4957203cc91bf586f8997d4d0c (diff) |
Update for index change. Semes it didn't work the first time.
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/catalog/indexing.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/catalog/indexing.h b/src/include/catalog/indexing.h index 2c88379d7d1..358773aa454 100644 --- a/src/include/catalog/indexing.h +++ b/src/include/catalog/indexing.h @@ -7,7 +7,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: indexing.h,v 1.34 2000/01/24 02:12:57 momjian Exp $ + * $Id: indexing.h,v 1.35 2000/01/24 03:08:27 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -202,7 +202,7 @@ DECLARE_UNIQUE_INDEX(pg_rewrite_rulename_index on pg_rewrite using btree(rulenam xDECLARE_UNIQUE_INDEX(pg_shadow_name_index on pg_shadow using btree(usename name_ops)); xDECLARE_UNIQUE_INDEX(pg_shadow_sysid_index on pg_shadow using btree(usesysid int4_ops)); */ -DECLARE_INDEX(pg_statistic_relid_att_op_index on pg_statistic using btree(starelid oid_ops, staattnum int2_ops)); +DECLARE_INDEX(pg_statistic_relid_att_index on pg_statistic using btree(starelid oid_ops, staattnum int2_ops)); DECLARE_INDEX(pg_trigger_tgconstrname_index on pg_trigger using btree(tgconstrname name_ops)); DECLARE_INDEX(pg_trigger_tgconstrrelid_index on pg_trigger using btree(tgconstrrelid oid_ops)); DECLARE_INDEX(pg_trigger_tgrelid_index on pg_trigger using btree(tgrelid oid_ops)); |