@@ -6141,7 +6141,7 @@ load_relcache_init_file(bool shared)
61416141if (rel -> rd_isnailed )
61426142nailed_indexes ++ ;
61436143
6144- /*next, read the pg_index tuple */
6144+ /* read the pg_index tuple */
61456145if (fread (& len ,1 ,sizeof (len ),fp )!= sizeof (len ))
61466146gotoread_failed ;
61476147
@@ -6172,7 +6172,7 @@ load_relcache_init_file(bool shared)
61726172 */
61736173InitIndexAmRoutine (rel );
61746174
6175- /*next, read the vector of opfamily OIDs */
6175+ /* read the vector of opfamily OIDs */
61766176if (fread (& len ,1 ,sizeof (len ),fp )!= sizeof (len ))
61776177gotoread_failed ;
61786178
@@ -6182,7 +6182,7 @@ load_relcache_init_file(bool shared)
61826182
61836183rel -> rd_opfamily = opfamily ;
61846184
6185- /*next, read the vector of opcintype OIDs */
6185+ /* read the vector of opcintype OIDs */
61866186if (fread (& len ,1 ,sizeof (len ),fp )!= sizeof (len ))
61876187gotoread_failed ;
61886188
@@ -6192,7 +6192,7 @@ load_relcache_init_file(bool shared)
61926192
61936193rel -> rd_opcintype = opcintype ;
61946194
6195- /*next, read the vector of support procedure OIDs */
6195+ /* read the vector of support procedure OIDs */
61966196if (fread (& len ,1 ,sizeof (len ),fp )!= sizeof (len ))
61976197gotoread_failed ;
61986198support = (RegProcedure * )MemoryContextAlloc (indexcxt ,len );
@@ -6201,7 +6201,7 @@ load_relcache_init_file(bool shared)
62016201
62026202rel -> rd_support = support ;
62036203
6204- /*next, read the vector of collation OIDs */
6204+ /* read the vector of collation OIDs */
62056205if (fread (& len ,1 ,sizeof (len ),fp )!= sizeof (len ))
62066206gotoread_failed ;
62076207
@@ -6211,7 +6211,7 @@ load_relcache_init_file(bool shared)
62116211
62126212rel -> rd_indcollation = indcollation ;
62136213
6214- /*finally, read the vector of indoption values */
6214+ /* read the vector of indoption values */
62156215if (fread (& len ,1 ,sizeof (len ),fp )!= sizeof (len ))
62166216gotoread_failed ;
62176217
@@ -6221,7 +6221,7 @@ load_relcache_init_file(bool shared)
62216221
62226222rel -> rd_indoption = indoption ;
62236223
6224- /*finally, read the vector of opcoptions values */
6224+ /* read the vector of opcoptions values */
62256225rel -> rd_opcoptions = (bytea * * )
62266226MemoryContextAllocZero (indexcxt ,sizeof (* rel -> rd_opcoptions )* relform -> relnatts );
62276227