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
1f649269
Commit
1f649269
authored
Nov 30, 1999
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compile error on older patch.
parent
eebfb9ba
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
src/backend/commands/user.c
src/backend/commands/user.c
+2
-2
src/bin/psql/sql_help.h
src/bin/psql/sql_help.h
+2
-2
No files found.
src/backend/commands/user.c
View file @
1f649269
...
...
@@ -5,7 +5,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: user.c,v 1.
39 1999/11/30 03:57:23
momjian Exp $
* $Id: user.c,v 1.
40 1999/11/30 04:29:56
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -282,7 +282,7 @@ AlterUser(AlterUserStmt *stmt, CommandDest dest)
}
/* look for duplicate sysid */
tuple
=
SearchSysCacheTuple
(
USE
SYSID
,
tuple
=
SearchSysCacheTuple
(
SHADOW
SYSID
,
Int32GetDatum
(
stmt
->
sysid
),
0
,
0
,
0
);
if
(
HeapTupleIsValid
(
tuple
))
...
...
src/bin/psql/sql_help.h
View file @
1f649269
...
...
@@ -24,7 +24,7 @@ static struct _helpStruct QL_HELP[] = {
{
"ALTER USER"
,
"Modifies user account information"
,
"ALTER USER username
[ WITH PASSWORD password
]
\n
[ CREATEDB | NOCREATEDB ] [ CREATEUSER | NOCREATEUSER ]
\n
[ IN GROUP groupname [, ...] ]
\n
[ VALID UNTIL 'abstime' ]"
},
"ALTER USER username
\n
[ WITH
\n
[ SYSID uid ]
\n
[ PASSWORD password ]
]
\n
[ CREATEDB | NOCREATEDB ] [ CREATEUSER | NOCREATEUSER ]
\n
[ IN GROUP groupname [, ...] ]
\n
[ VALID UNTIL 'abstime' ]"
},
{
"BEGIN"
,
"Begins a transaction in chained mode"
,
...
...
@@ -100,7 +100,7 @@ static struct _helpStruct QL_HELP[] = {
{
"CREATE USER"
,
"Creates account information for a new user"
,
"CREATE USER username
\n
[ WITH
PASSWORD password
]
\n
[ CREATEDB | NOCREATEDB ] [ CREATEUSER | NOCREATEUSER ]
\n
[ IN GROUP groupname [, ...] ]
\n
[ VALID UNTIL 'abstime' ]"
},
"CREATE USER username
\n
[ WITH
\n
[ SYSID uid ]
\n
[ PASSWORD password ]
]
\n
[ CREATEDB | NOCREATEDB ] [ CREATEUSER | NOCREATEUSER ]
\n
[ IN GROUP groupname [, ...] ]
\n
[ VALID UNTIL 'abstime' ]"
},
{
"CREATE VIEW"
,
"Constructs a virtual table"
,
...
...
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