Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
7df9f55f
Commit
7df9f55f
authored
Sep 30, 2005
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change the option spelling to --connection-limit to be consistent with the
SQL option spelling.
parent
a7084efd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
doc/src/sgml/ref/createuser.sgml
doc/src/sgml/ref/createuser.sgml
+2
-2
src/bin/scripts/createuser.c
src/bin/scripts/createuser.c
+3
-3
No files found.
doc/src/sgml/ref/createuser.sgml
View file @
7df9f55f
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/createuser.sgml,v 1.4
2 2005/08/14 20:16:02 tgl
Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/createuser.sgml,v 1.4
3 2005/09/30 07:13:53 petere
Exp $
PostgreSQL documentation
-->
...
...
@@ -186,7 +186,7 @@ PostgreSQL documentation
<varlistentry>
<term><option>-c <replaceable class="parameter">number</replaceable></></term>
<term><option>--conn-limit <replaceable class="parameter">number</replaceable></></term>
<term><option>--conn
ection
-limit <replaceable class="parameter">number</replaceable></></term>
<listitem>
<para>
Set a maximum number of connections for the new user.
...
...
src/bin/scripts/createuser.c
View file @
7df9f55f
...
...
@@ -5,7 +5,7 @@
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/bin/scripts/createuser.c,v 1.1
8 2005/08/14 20:16:03 tgl
Exp $
* $PostgreSQL: pgsql/src/bin/scripts/createuser.c,v 1.1
9 2005/09/30 07:13:54 petere
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -41,7 +41,7 @@ main(int argc, char *argv[])
/* adduser is obsolete, undocumented spelling of superuser */
{
"adduser"
,
no_argument
,
NULL
,
'a'
},
{
"no-adduser"
,
no_argument
,
NULL
,
'A'
},
{
"conn-limit"
,
required_argument
,
NULL
,
'c'
},
{
"conn
ection
-limit"
,
required_argument
,
NULL
,
'c'
},
{
"pwprompt"
,
no_argument
,
NULL
,
'P'
},
{
"encrypted"
,
no_argument
,
NULL
,
'E'
},
{
"unencrypted"
,
no_argument
,
NULL
,
'N'
},
...
...
@@ -315,7 +315,7 @@ help(const char *progname)
printf
(
_
(
" -i, --inherit role inherits permissions of roles
\n
"
));
printf
(
_
(
" it is a member of (default)
\n
"
));
printf
(
_
(
" -I, --no-inherit role does not inherit permissions
\n
"
));
printf
(
_
(
" -c, --conn
-limit=N max connections
for role (default: no limit)
\n
"
));
printf
(
_
(
" -c, --conn
ection-limit=N connection limit
for role (default: no limit)
\n
"
));
printf
(
_
(
" -P, --pwprompt assign a password to new role
\n
"
));
printf
(
_
(
" -E, --encrypted encrypt stored password
\n
"
));
printf
(
_
(
" -N, --unencrypted do not encrypt stored password
\n
"
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment