diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2001-09-07 00:46:42 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2001-09-07 00:46:42 +0000 |
commit | e67bb7af5a2e0f014fc69cd168954f022de90a51 (patch) | |
tree | 448221f1dd9675fca90fd430c61eb19c40dcf84f /src | |
parent | 4d8ce9bba3d74d7f4bafad6843c4afbfbfbed08c (diff) | |
download | postgresql-e67bb7af5a2e0f014fc69cd168954f022de90a51.tar.gz postgresql-e67bb7af5a2e0f014fc69cd168954f022de90a51.zip |
Missed a few places that referred to a compile-time limit on
max_connections.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/postmaster/postmaster.c | 8 | ||||
-rw-r--r-- | src/backend/utils/misc/postgresql.conf.sample | 13 |
2 files changed, 7 insertions, 14 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index 31521f5de43..5cdf81cd8fa 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -37,7 +37,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.238 2001/09/07 00:27:29 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.239 2001/09/07 00:46:42 tgl Exp $ * * NOTES * @@ -480,11 +480,7 @@ PostmasterMain(int argc, char *argv[]) */ break; case 'N': - - /* - * The max number of backends to start. Can't set to less - * than 1 or more than compiled-in limit. - */ + /* The max number of backends to start. */ SetConfigOption("max_connections", optarg, PGC_POSTMASTER, true); break; case 'n': diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample index f1582d6bacb..2d5ac37cae6 100644 --- a/src/backend/utils/misc/postgresql.conf.sample +++ b/src/backend/utils/misc/postgresql.conf.sample @@ -7,17 +7,14 @@ # name = value # # (The `=' is optional.) White space is collapsed, comments are -# introduced by `#' anywhere on a line. The complete list of option +# introduced by `#' anywhere on a line. The complete list of option # names and allowed values can be found in the PostgreSQL -# documentation. Examples are: - -#log_connections = on -#fsync = off -#max_connections = 64 +# documentation. The commented-out settings shown in this file +# represent the default values. # Any option can also be given as a command line switch to the # postmaster, e.g., 'postmaster -c log_connections=on'. Some options -# can be set at run-time with the 'SET' SQL command. +# can be changed at run-time with the 'SET' SQL command. #======================================================================== @@ -29,7 +26,7 @@ #tcpip_socket = false #ssl = false -#max_connections = 32 # 1-1024 +#max_connections = 32 #port = 5432 #hostname_lookup = false |