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
558833ca
Commit
558833ca
authored
Oct 07, 1999
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add quotes to password example.
parent
79cb5f76
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
doc/TODO
doc/TODO
+1
-1
doc/src/sgml/ref/create_user.sgml
doc/src/sgml/ref/create_user.sgml
+4
-4
No files found.
doc/TODO
View file @
558833ca
...
@@ -53,7 +53,7 @@ PARSER
...
@@ -53,7 +53,7 @@ PARSER
* SELECT COUNT('asdf') FROM pg_class WHERE oid=12 crashes
* SELECT COUNT('asdf') FROM pg_class WHERE oid=12 crashes
* SELECT DISTINCT ON col1 col1 col2 FROM tab1 is broken [distinct]
* SELECT DISTINCT ON col1 col1 col2 FROM tab1 is broken [distinct]
* -When using aggregates + GROUP BY, no rows in should yield no rows out(Tom)
* -When using aggregates + GROUP BY, no rows in should yield no rows out(Tom)
*
Allow HAVING to use comparisons that have no aggregates, for portability
*
-Allow HAVING to use comparisons that have no aggregates(Tom)
VIEWS
VIEWS
...
...
doc/src/sgml/ref/create_user.sgml
View file @
558833ca
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_user.sgml,v 1.
8 1999/07/22 15:09:08 thomas
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_user.sgml,v 1.
9 1999/10/07 16:40:36 momjian
Exp $
Postgres documentation
Postgres documentation
-->
-->
...
@@ -249,7 +249,7 @@ CREATE USER jonathan
...
@@ -249,7 +249,7 @@ CREATE USER jonathan
Create a user with a password:
Create a user with a password:
<programlisting>
<programlisting>
CREATE USER davide WITH PASSWORD
jw8s0F4
CREATE USER davide WITH PASSWORD
"jw8s0F4"
</programlisting>
</programlisting>
</para>
</para>
...
@@ -259,7 +259,7 @@ CREATE USER davide WITH PASSWORD jw8s0F4
...
@@ -259,7 +259,7 @@ CREATE USER davide WITH PASSWORD jw8s0F4
valid:
valid:
<programlisting>
<programlisting>
CREATE USER miriam WITH PASSWORD
jw8s0F4
VALID UNTIL 'Jan 1 2002'
CREATE USER miriam WITH PASSWORD
"jw8s0F4"
VALID UNTIL 'Jan 1 2002'
</programlisting>
</programlisting>
</para>
</para>
...
@@ -267,7 +267,7 @@ CREATE USER miriam WITH PASSWORD jw8s0F4 VALID UNTIL 'Jan 1 2002'
...
@@ -267,7 +267,7 @@ CREATE USER miriam WITH PASSWORD jw8s0F4 VALID UNTIL 'Jan 1 2002'
Create an account where the user can create databases:
Create an account where the user can create databases:
<programlisting>
<programlisting>
CREATE USER manuel WITH PASSWORD
jw8s0F4
CREATEDB
CREATE USER manuel WITH PASSWORD
"jw8s0F4"
CREATEDB
</programlisting>
</programlisting>
</para>
</para>
</refsect1>
</refsect1>
...
...
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