summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres Freund <andres@anarazel.de>2019-04-30 17:45:32 -0700
committerAndres Freund <andres@anarazel.de>2019-04-30 17:45:32 -0700
commit40230f0e2e3bed70eaada93b73a440221017d4d7 (patch)
tree3c9d7f278252e7c162099d3def385d65841c1d28
parente7418f89f17ad351d8cbd513a104efda6d25a2bd (diff)
downloadpostgresql-40230f0e2e3bed70eaada93b73a440221017d4d7.tar.gz
Fix unused variable compiler warning in !debug builds.
Introduced in 3dbb317d3. Fix by using the new local variable in more places. Reported-By: Bruce Momjian (off-list) Backpatch: 9.4-, like 3dbb317d3
-rw-r--r--src/backend/catalog/indexing.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/catalog/indexing.c b/src/backend/catalog/indexing.c
index 8ae8f470df..b028c460b6 100644
--- a/src/backend/catalog/indexing.c
+++ b/src/backend/catalog/indexing.c
@@ -135,7 +135,7 @@ CatalogIndexInsert(CatalogIndexState indstate, HeapTuple heapTuple)
Assert(!ReindexIsProcessingIndex(RelationGetRelid(index)));
continue;
}
-#endif /* USE_ASSERT_CHECKING */
+#endif /* USE_ASSERT_CHECKING */
/*
* FormIndexDatum fills in its values and isnull parameters with the
@@ -150,12 +150,12 @@ CatalogIndexInsert(CatalogIndexState indstate, HeapTuple heapTuple)
/*
* The index AM does the rest.
*/
- index_insert(relationDescs[i], /* index relation */
+ index_insert(index, /* index relation */
values, /* array of index Datums */
isnull, /* is-null flags */
&(heapTuple->t_self), /* tid of heap tuple */
heapRelation,
- relationDescs[i]->rd_index->indisunique ?
+ index->rd_index->indisunique ?
UNIQUE_CHECK_YES : UNIQUE_CHECK_NO);
}