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