@@ -2859,7 +2859,7 @@ do_parallel_processing(LVRelState *vacrel, LVShared *lvshared)
28592859continue ;
28602860
28612861/* Do vacuum or cleanup of the index */
2862- istat = ( vacrel -> indstats [idx ]) ;
2862+ istat = vacrel -> indstats [idx ];
28632863vacrel -> indstats [idx ]= parallel_process_one_index (indrel ,istat ,
28642864lvshared ,
28652865shared_istat ,
@@ -2910,7 +2910,7 @@ do_serial_processing_for_unsafe_indexes(LVRelState *vacrel, LVShared *lvshared)
29102910continue ;
29112911
29122912/* Do vacuum or cleanup of the index */
2913- istat = ( vacrel -> indstats [idx ]) ;
2913+ istat = vacrel -> indstats [idx ];
29142914vacrel -> indstats [idx ]= parallel_process_one_index (indrel ,istat ,
29152915lvshared ,
29162916shared_istat ,
@@ -3123,15 +3123,15 @@ lazy_cleanup_one_index(Relation indrel, IndexBulkDeleteResult *istat,
31233123ereport (elevel ,
31243124(errmsg ("index \"%s\" now contains %.0f row versions in %u pages" ,
31253125RelationGetRelationName (indrel ),
3126- ( istat ) -> num_index_tuples ,
3127- ( istat ) -> num_pages ),
3126+ istat -> num_index_tuples ,
3127+ istat -> num_pages ),
31283128errdetail ("%.0f index row versions were removed.\n"
31293129"%u index pages were newly deleted.\n"
31303130"%u index pages are currently deleted, of which %u are currently reusable.\n"
31313131"%s." ,
3132- ( istat ) -> tuples_removed ,
3133- ( istat ) -> pages_newly_deleted ,
3134- ( istat ) -> pages_deleted ,( istat ) -> pages_free ,
3132+ istat -> tuples_removed ,
3133+ istat -> pages_newly_deleted ,
3134+ istat -> pages_deleted ,istat -> pages_free ,
31353135pg_rusage_show (& ru0 ))));
31363136}
31373137
@@ -4069,7 +4069,7 @@ end_parallel_vacuum(LVRelState *vacrel)
40694069if (shared_istat -> updated )
40704070{
40714071indstats [idx ]= (IndexBulkDeleteResult * )palloc0 (sizeof (IndexBulkDeleteResult ));
4072- memcpy (indstats [idx ],& ( shared_istat -> istat ) ,sizeof (IndexBulkDeleteResult ));
4072+ memcpy (indstats [idx ],& shared_istat -> istat ,sizeof (IndexBulkDeleteResult ));
40734073}
40744074else
40754075indstats [idx ]= NULL ;