|
55 | 55 | *
|
56 | 56 | *
|
57 | 57 | * IDENTIFICATION
|
58 |
| - * $PostgreSQL: pgsql/src/backend/postmaster/autovacuum.c,v 1.70 2008/01/01 19:45:51 momjian Exp $ |
| 58 | + * $PostgreSQL: pgsql/src/backend/postmaster/autovacuum.c,v 1.71 2008/01/14 13:39:25 alvherre Exp $ |
59 | 59 | *
|
60 | 60 | *-------------------------------------------------------------------------
|
61 | 61 | */
|
@@ -2658,11 +2658,11 @@ autovac_report_activity(VacuumStmt *vacstmt, Oid relid)
|
2658 | 2658 | /* Report the command and possible options */
|
2659 | 2659 | if (vacstmt->vacuum)
|
2660 | 2660 | snprintf(activity,MAX_AUTOVAC_ACTIV_LEN,
|
2661 |
| -"VACUUM%s", |
| 2661 | +"autovacuum:VACUUM%s", |
2662 | 2662 | vacstmt->analyze ?" ANALYZE" :"");
|
2663 | 2663 | else
|
2664 | 2664 | snprintf(activity,MAX_AUTOVAC_ACTIV_LEN,
|
2665 |
| -"ANALYZE"); |
| 2665 | +"autovacuum:ANALYZE"); |
2666 | 2666 |
|
2667 | 2667 | /*
|
2668 | 2668 | * Report the qualified name of the relation.
|
|