File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ CatalogIndexInsert(CatalogIndexState indstate, HeapTuple heapTuple)
135
135
Assert (!ReindexIsProcessingIndex (RelationGetRelid (index )));
136
136
continue ;
137
137
}
138
- #endif /* USE_ASSERT_CHECKING */
138
+ #endif /* USE_ASSERT_CHECKING */
139
139
140
140
/*
141
141
* FormIndexDatum fills in its values and isnull parameters with the
@@ -150,12 +150,12 @@ CatalogIndexInsert(CatalogIndexState indstate, HeapTuple heapTuple)
150
150
/*
151
151
* The index AM does the rest.
152
152
*/
153
- index_insert (relationDescs [ i ], /* index relation */
153
+ index_insert (index , /* index relation */
154
154
values , /* array of index Datums */
155
155
isnull , /* is-null flags */
156
156
& (heapTuple -> t_self ), /* tid of heap tuple */
157
157
heapRelation ,
158
- relationDescs [ i ] -> rd_index -> indisunique ?
158
+ index -> rd_index -> indisunique ?
159
159
UNIQUE_CHECK_YES : UNIQUE_CHECK_NO ,
160
160
indexInfo );
161
161
}
You can’t perform that action at this time.
0 commit comments