projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f1dfcf6
)
Remove useless unary plus.
author
Tom Lane
<tgl@sss.pgh.pa.us>
Mon, 29 Feb 2016 15:48:40 +0000
(10:48 -0500)
committer
Tom Lane
<tgl@sss.pgh.pa.us>
Mon, 29 Feb 2016 15:48:45 +0000
(10:48 -0500)
It's harmless, but might confuse readers. Seems to have been introduced
in
6bc8ef0b7f1f1df3
. Back-patch, just to avoid cosmetic cross-branch
differences.
Amit Langote
src/backend/utils/init/postinit.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/utils/init/postinit.c
b/src/backend/utils/init/postinit.c
index c172d3a30e96cb906ddcb0c6129b0e02e3945f32..5dba5d2a5ba59fed30d6b9b44b712745845bdab7 100644
(file)
--- a/
src/backend/utils/init/postinit.c
+++ b/
src/backend/utils/init/postinit.c
@@
-485,7
+485,7
@@
InitializeMaxBackends(void)
/* the extra unit accounts for the autovacuum launcher */
MaxBackends = MaxConnections + autovacuum_max_workers + 1 +
-
+
max_worker_processes;
+ max_worker_processes;
/* internal error because the values were all checked previously */
if (MaxBackends > MAX_BACKENDS)