aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor/execMain.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2000-06-17 21:49:04 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2000-06-17 21:49:04 +0000
commitd03a933ec5400f77fc132d4a47bb7d2981ff5187 (patch)
tree70497a8083f5c2569e8e50afa04b5e681082d65d /src/backend/executor/execMain.c
parent9cf80f2f55589946c22ee18185c2d87a9266012a (diff)
downloadpostgresql-d03a933ec5400f77fc132d4a47bb7d2981ff5187.tar.gz
postgresql-d03a933ec5400f77fc132d4a47bb7d2981ff5187.zip
Fix performance problems with pg_index lookups (see, for example,
discussion of 5/19/00). pg_index is now searched for indexes of a relation using an indexscan. Moreover, this is done once and cached in the relcache entry for the relation, in the form of a list of OIDs for the indexes. This list is used by the parser and executor to drive lookups in the pg_index syscache when they want to know the properties of the indexes. Net result: index information will be fully cached for repetitive operations such as inserts.
Diffstat (limited to 'src/backend/executor/execMain.c')
-rw-r--r--src/backend/executor/execMain.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/executor/execMain.c b/src/backend/executor/execMain.c
index 8fbb4be6cb0..f80fe9abab7 100644
--- a/src/backend/executor/execMain.c
+++ b/src/backend/executor/execMain.c
@@ -27,7 +27,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.117 2000/06/15 04:09:50 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.118 2000/06/17 21:48:47 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -735,7 +735,7 @@ InitPlan(CmdType operation, Query *parseTree, Plan *plan, EState *estate)
*/
if (resultRelationDesc->rd_rel->relhasindex &&
operation != CMD_DELETE)
- ExecOpenIndices(resultRelationOid, resultRelationInfo);
+ ExecOpenIndices(resultRelationInfo);
estate->es_result_relation_info = resultRelationInfo;
}