@@ -2859,7 +2859,7 @@ do_parallel_processing(LVRelState *vacrel, LVShared *lvshared)
2859
2859
continue ;
2860
2860
2861
2861
/* Do vacuum or cleanup of the index */
2862
- istat = ( vacrel -> indstats [idx ]) ;
2862
+ istat = vacrel -> indstats [idx ];
2863
2863
vacrel -> indstats [idx ]= parallel_process_one_index (indrel ,istat ,
2864
2864
lvshared ,
2865
2865
shared_istat ,
@@ -2910,7 +2910,7 @@ do_serial_processing_for_unsafe_indexes(LVRelState *vacrel, LVShared *lvshared)
2910
2910
continue ;
2911
2911
2912
2912
/* Do vacuum or cleanup of the index */
2913
- istat = ( vacrel -> indstats [idx ]) ;
2913
+ istat = vacrel -> indstats [idx ];
2914
2914
vacrel -> indstats [idx ]= parallel_process_one_index (indrel ,istat ,
2915
2915
lvshared ,
2916
2916
shared_istat ,
@@ -3123,15 +3123,15 @@ lazy_cleanup_one_index(Relation indrel, IndexBulkDeleteResult *istat,
3123
3123
ereport (elevel ,
3124
3124
(errmsg ("index \"%s\" now contains %.0f row versions in %u pages" ,
3125
3125
RelationGetRelationName (indrel ),
3126
- ( istat ) -> num_index_tuples ,
3127
- ( istat ) -> num_pages ),
3126
+ istat -> num_index_tuples ,
3127
+ istat -> num_pages ),
3128
3128
errdetail ("%.0f index row versions were removed.\n"
3129
3129
"%u index pages were newly deleted.\n"
3130
3130
"%u index pages are currently deleted, of which %u are currently reusable.\n"
3131
3131
"%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 ,
3135
3135
pg_rusage_show (& ru0 ))));
3136
3136
}
3137
3137
@@ -4069,7 +4069,7 @@ end_parallel_vacuum(LVRelState *vacrel)
4069
4069
if (shared_istat -> updated )
4070
4070
{
4071
4071
indstats [idx ]= (IndexBulkDeleteResult * )palloc0 (sizeof (IndexBulkDeleteResult ));
4072
- memcpy (indstats [idx ],& ( shared_istat -> istat ) ,sizeof (IndexBulkDeleteResult ));
4072
+ memcpy (indstats [idx ],& shared_istat -> istat ,sizeof (IndexBulkDeleteResult ));
4073
4073
}
4074
4074
else
4075
4075
indstats [idx ]= NULL ;