diff options
Diffstat (limited to 'src/backend/catalog/index.c')
-rw-r--r-- | src/backend/catalog/index.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/backend/catalog/index.c b/src/backend/catalog/index.c index 2dad7b059e9..b2560549083 100644 --- a/src/backend/catalog/index.c +++ b/src/backend/catalog/index.c @@ -557,12 +557,7 @@ AppendAttributeTuples(Relation indexRelation, int numatts) { Form_pg_attribute attr = TupleDescAttr(indexTupDesc, i); - /* - * There used to be very grotty code here to set these fields, but I - * think it's unnecessary. They should be set already. - */ Assert(attr->attnum == i + 1); - Assert(attr->attcacheoff == -1); InsertPgAttributeTuple(pg_attribute, attr, indstate); } |