We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 468a970 commit db11f43Copy full SHA for db11f43
src/backend/catalog/indexing.c
@@ -9,7 +9,7 @@
9
*
10
11
* IDENTIFICATION
12
- * $Header: /cvsroot/pgsql/src/backend/catalog/indexing.c,v 1.74 2000/11/16 22:30:17 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/catalog/indexing.c,v 1.75 2000/12/14 07:02:42 inoue Exp $
13
14
*-------------------------------------------------------------------------
15
*/
@@ -143,7 +143,7 @@ CatalogIndexInsert(Relation *idescs,
143
char nullv[INDEX_MAX_KEYS];
144
int i;
145
146
- if (IsIgnoringSystemIndexes())
+ if (IsIgnoringSystemIndexes() || (!heapRelation->rd_rel->relhasindex))
147
return;
148
heapDescriptor = RelationGetDescr(heapRelation);
149
0 commit comments