File tree 1 file changed +4
-3
lines changed 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 55
55
*
56
56
*
57
57
* IDENTIFICATION
58
- * $PostgreSQL: pgsql/src/backend/postmaster/autovacuum.c,v 1.81 2008/07/17 21:02:31 alvherre Exp $
58
+ * $PostgreSQL: pgsql/src/backend/postmaster/autovacuum.c,v 1.82 2008/07/21 15:27:02 alvherre Exp $
59
59
*
60
60
*-------------------------------------------------------------------------
61
61
*/
@@ -2657,8 +2657,9 @@ autovac_report_activity(autovac_table *tab)
2657
2657
/* Report the command and possible options */
2658
2658
if (tab -> at_dovacuum )
2659
2659
snprintf (activity , MAX_AUTOVAC_ACTIV_LEN ,
2660
- "autovacuum: VACUUM%s" ,
2661
- tab -> at_doanalyze ? " ANALYZE" : "" );
2660
+ "autovacuum: VACUUM%s%s" ,
2661
+ tab -> at_doanalyze ? " ANALYZE" : "" ,
2662
+ tab -> at_wraparound ? " (to prevent wraparound)" : "" );
2662
2663
else
2663
2664
snprintf (activity , MAX_AUTOVAC_ACTIV_LEN ,
2664
2665
"autovacuum: ANALYZE" );
You can’t perform that action at this time.
0 commit comments