File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/commands/analyze.c,v 1.105 2007/04/18 16:44:17 alvherre Exp $
11
+ * $PostgreSQL: pgsql/src/backend/commands/analyze.c,v 1.106 2007/04/19 16:26:44 alvherre Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
@@ -468,7 +468,7 @@ analyze_rel(Oid relid, VacuumStmt *vacstmt)
468
468
/* Log the action if appropriate */
469
469
if (IsAutoVacuumWorkerProcess () && Log_autovacuum >= 0 )
470
470
{
471
- long diff ;
471
+ long diff = 0L ;
472
472
473
473
if (Log_autovacuum > 0 )
474
474
{
Original file line number Diff line number Diff line change 36
36
*
37
37
*
38
38
* IDENTIFICATION
39
- * $PostgreSQL: pgsql/src/backend/commands/vacuumlazy.c,v 1.86 2007/04/18 16:44:18 alvherre Exp $
39
+ * $PostgreSQL: pgsql/src/backend/commands/vacuumlazy.c,v 1.87 2007/04/19 16:26:44 alvherre Exp $
40
40
*
41
41
*-------------------------------------------------------------------------
42
42
*/
@@ -217,7 +217,7 @@ lazy_vacuum_rel(Relation onerel, VacuumStmt *vacstmt)
217
217
/* and log the action if appropriate */
218
218
if (IsAutoVacuumWorkerProcess () && Log_autovacuum >= 0 )
219
219
{
220
- long diff ;
220
+ long diff = 0L ;
221
221
222
222
if (Log_autovacuum > 0 )
223
223
{
You can’t perform that action at this time.
0 commit comments