We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentf495b65 commitd8d5e1aCopy full SHA for d8d5e1a
src/backend/catalog/indexing.c
@@ -135,7 +135,7 @@ CatalogIndexInsert(CatalogIndexState indstate, HeapTuple heapTuple)
135
Assert(!ReindexIsProcessingIndex(RelationGetRelid(index)));
136
continue;
137
}
138
-#endif/* USE_ASSERT_CHECKING */
+#endif/* USE_ASSERT_CHECKING */
139
140
/*
141
* FormIndexDatum fills in its values and isnull parameters with the
@@ -150,12 +150,12 @@ CatalogIndexInsert(CatalogIndexState indstate, HeapTuple heapTuple)
150
151
* The index AM does the rest.
152
*/
153
-index_insert(relationDescs[i],/* index relation */
+index_insert(index,/* index relation */
154
values,/* array of index Datums */
155
isnull,/* is-null flags */
156
&(heapTuple->t_self),/* tid of heap tuple */
157
heapRelation,
158
-relationDescs[i]->rd_index->indisunique ?
+index->rd_index->indisunique ?
159
UNIQUE_CHECK_YES :UNIQUE_CHECK_NO,
160
indexInfo);
161