Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
558833ca
Commit
558833ca
authored
25 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Add quotes to password example.
parent
79cb5f76
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/TODO
+1
-1
1 addition, 1 deletion
doc/TODO
doc/src/sgml/ref/create_user.sgml
+4
-4
4 additions, 4 deletions
doc/src/sgml/ref/create_user.sgml
with
5 additions
and
5 deletions
doc/TODO
+
1
−
1
View file @
558833ca
...
...
@@ -53,7 +53,7 @@ PARSER
* SELECT COUNT('asdf') FROM pg_class WHERE oid=12 crashes
* 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)
* Allow HAVING to use comparisons that have no aggregates
, for portability
*
-
Allow HAVING to use comparisons that have no aggregates
(Tom)
VIEWS
...
...
This diff is collapsed.
Click to expand it.
doc/src/sgml/ref/create_user.sgml
+
4
−
4
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
-->
...
...
@@ -249,7 +249,7 @@ CREATE USER jonathan
Create a user with a password:
<programlisting>
CREATE USER davide WITH PASSWORD jw8s0F4
CREATE USER davide WITH PASSWORD
"
jw8s0F4
"
</programlisting>
</para>
...
...
@@ -259,7 +259,7 @@ CREATE USER davide WITH PASSWORD jw8s0F4
valid:
<programlisting>
CREATE USER miriam WITH PASSWORD jw8s0F4 VALID UNTIL 'Jan 1 2002'
CREATE USER miriam WITH PASSWORD
"
jw8s0F4
"
VALID UNTIL 'Jan 1 2002'
</programlisting>
</para>
...
...
@@ -267,7 +267,7 @@ CREATE USER miriam WITH PASSWORD jw8s0F4 VALID UNTIL 'Jan 1 2002'
Create an account where the user can create databases:
<programlisting>
CREATE USER manuel WITH PASSWORD jw8s0F4 CREATEDB
CREATE USER manuel WITH PASSWORD
"
jw8s0F4
"
CREATEDB
</programlisting>
</para>
</refsect1>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment