@@ -6530,34 +6530,34 @@ write_relcache_init_file(bool shared)
65306530HEAPTUPLESIZE + rel -> rd_indextuple -> t_len ,
65316531fp );
65326532
6533- /*next, write the vector of opfamily OIDs */
6533+ /* write the vector of opfamily OIDs */
65346534write_item (rel -> rd_opfamily ,
65356535relform -> relnatts * sizeof (Oid ),
65366536fp );
65376537
6538- /*next, write the vector of opcintype OIDs */
6538+ /* write the vector of opcintype OIDs */
65396539write_item (rel -> rd_opcintype ,
65406540relform -> relnatts * sizeof (Oid ),
65416541fp );
65426542
6543- /*next, write the vector of support procedure OIDs */
6543+ /* write the vector of support procedure OIDs */
65446544write_item (rel -> rd_support ,
65456545relform -> relnatts * (rel -> rd_indam -> amsupport * sizeof (RegProcedure )),
65466546fp );
65476547
6548- /*next, write the vector of collation OIDs */
6548+ /* write the vector of collation OIDs */
65496549write_item (rel -> rd_indcollation ,
65506550relform -> relnatts * sizeof (Oid ),
65516551fp );
65526552
6553- /*finally, write the vector of indoption values */
6553+ /* write the vector of indoption values */
65546554write_item (rel -> rd_indoption ,
65556555relform -> relnatts * sizeof (int16 ),
65566556fp );
65576557
65586558Assert (rel -> rd_opcoptions );
65596559
6560- /*finally, write the vector of opcoptions values */
6560+ /* write the vector of opcoptions values */
65616561for (i = 0 ;i < relform -> relnatts ;i ++ )
65626562{
65636563bytea * opt = rel -> rd_opcoptions [i ];