projects
/
users
/
andresfreund
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c12e43a
)
pg_waldump: Don't call XLogDumpDisplayStats() if -q is specified.
author
Robert Haas
<
[email protected]
>
Fri, 3 Apr 2020 15:58:58 +0000
(11:58 -0400)
committer
Robert Haas
<
[email protected]
>
Fri, 3 Apr 2020 15:58:58 +0000
(11:58 -0400)
Commit
ac44367efbef198c57a18b96dbc6a39191720994
introduced this
problem.
Report and fix by Fujii Masao.
Discussion: http://postgr.es/m/
d332b8f0
-0c72-3cd6-6945-
7a86a503662a
@oss.nttdata.com
src/bin/pg_waldump/pg_waldump.c
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/pg_waldump/pg_waldump.c
b/src/bin/pg_waldump/pg_waldump.c
index 7c80b5288f12a206a4d74f7629b45eb4cadf6691..d7bd9ccac24d6d1c9ac3a853b5e3b9e13a970e17 100644
(file)
--- a/
src/bin/pg_waldump/pg_waldump.c
+++ b/
src/bin/pg_waldump/pg_waldump.c
@@
-1098,7
+1098,7
@@
main(int argc, char **argv)
break;
}
- if (config.stats == true)
+ if (config.stats == true
&& !config.quiet
)
XLogDumpDisplayStats(&config, &stats);
if (errormsg)