projects
/
postgresql
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a4930e7
)
Fix uninitialized variable.
author
Tom Lane
<tgl@sss.pgh.pa.us>
Tue, 22 Nov 2016 00:59:56 +0000
(19:59 -0500)
committer
Tom Lane
<tgl@sss.pgh.pa.us>
Tue, 22 Nov 2016 00:59:56 +0000
(19:59 -0500)
Oversight in
a734fd5d1
.
Michael Paquier
src/backend/postmaster/autovacuum.c
patch
|
blob
|
history
diff --git
a/src/backend/postmaster/autovacuum.c
b/src/backend/postmaster/autovacuum.c
index 954c1a1052d0a1ff8b5a0487ea620e27a97eefdb..be357e7793f90202ac0fe3a228943367e54a447e 100644
(file)
--- a/
src/backend/postmaster/autovacuum.c
+++ b/
src/backend/postmaster/autovacuum.c
@@
-1908,7
+1908,7
@@
do_autovacuum(void)
BufferAccessStrategy bstrategy;
ScanKeyData key;
TupleDesc pg_class_desc;
- int orphan_failures;
+ int orphan_failures
= 0
;
int effective_multixact_freeze_max_age;
/*