diff options
author | Bruce Momjian <bruce@momjian.us> | 2000-06-07 02:44:40 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2000-06-07 02:44:40 +0000 |
commit | 4bd50068122459ab3e969a807d4312470d1d0b8c (patch) | |
tree | 7f3a43245a20caea6d7966a2f01c5f55a9ddc3fb /src/backend/utils/cache/syscache.c | |
parent | 5b9d0d9a5cc223e2d875b477a7416851f9f9b564 (diff) | |
download | postgresql-4bd50068122459ab3e969a807d4312470d1d0b8c.tar.gz postgresql-4bd50068122459ab3e969a807d4312470d1d0b8c.zip |
Add index on pg_index.indrelid for Tom Lane.
Diffstat (limited to 'src/backend/utils/cache/syscache.c')
-rw-r--r-- | src/backend/utils/cache/syscache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/cache/syscache.c b/src/backend/utils/cache/syscache.c index 6cf35fa974d..38fa01e0d68 100644 --- a/src/backend/utils/cache/syscache.c +++ b/src/backend/utils/cache/syscache.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/cache/syscache.c,v 1.51 2000/06/06 17:02:38 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/cache/syscache.c,v 1.52 2000/06/07 02:44:37 momjian Exp $ * * NOTES * These routines allow the parser/planner/executor to perform @@ -71,7 +71,7 @@ typedef HeapTuple (*ScanFunc) (); In backend/catalog/indexing.c, initialize the relation array with the index names for the relation, fixed size of relation (or marking first non-fixed length field), and create the index lookup function. - Pick one that takes similar arguments and use that one, but keep the + Pick one that has similar arguments and use that one, but keep the function names in the same order as the cache list for clarity. Finally, any place your relation gets heap_insert() or |