@@ -6530,34 +6530,34 @@ write_relcache_init_file(bool shared)
6530
6530
HEAPTUPLESIZE + rel -> rd_indextuple -> t_len ,
6531
6531
fp );
6532
6532
6533
- /* next, write the vector of opfamily OIDs */
6533
+ /* write the vector of opfamily OIDs */
6534
6534
write_item (rel -> rd_opfamily ,
6535
6535
relform -> relnatts * sizeof (Oid ),
6536
6536
fp );
6537
6537
6538
- /* next, write the vector of opcintype OIDs */
6538
+ /* write the vector of opcintype OIDs */
6539
6539
write_item (rel -> rd_opcintype ,
6540
6540
relform -> relnatts * sizeof (Oid ),
6541
6541
fp );
6542
6542
6543
- /* next, write the vector of support procedure OIDs */
6543
+ /* write the vector of support procedure OIDs */
6544
6544
write_item (rel -> rd_support ,
6545
6545
relform -> relnatts * (rel -> rd_indam -> amsupport * sizeof (RegProcedure )),
6546
6546
fp );
6547
6547
6548
- /* next, write the vector of collation OIDs */
6548
+ /* write the vector of collation OIDs */
6549
6549
write_item (rel -> rd_indcollation ,
6550
6550
relform -> relnatts * sizeof (Oid ),
6551
6551
fp );
6552
6552
6553
- /* finally, write the vector of indoption values */
6553
+ /* write the vector of indoption values */
6554
6554
write_item (rel -> rd_indoption ,
6555
6555
relform -> relnatts * sizeof (int16 ),
6556
6556
fp );
6557
6557
6558
6558
Assert (rel -> rd_opcoptions );
6559
6559
6560
- /* finally, write the vector of opcoptions values */
6560
+ /* write the vector of opcoptions values */
6561
6561
for (i = 0 ; i < relform -> relnatts ; i ++ )
6562
6562
{
6563
6563
bytea * opt = rel -> rd_opcoptions [i ];
0 commit comments