Skip to content

Commit 558833c

Browse files
committed
Add quotes to password example.
1 parent 79cb5f7 commit 558833c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

doc/TODO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ PARSER
5353
* SELECT COUNT('asdf') FROM pg_class WHERE oid=12 crashes
5454
* SELECT DISTINCT ON col1 col1 col2 FROM tab1 is broken [distinct]
5555
* -When using aggregates + GROUP BY, no rows in should yield no rows out(Tom)
56-
* Allow HAVING to use comparisons that have no aggregates, for portability
56+
* -Allow HAVING to use comparisons that have no aggregates(Tom)
5757

5858
VIEWS
5959

doc/src/sgml/ref/create_user.sgml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_user.sgml,v 1.8 1999/07/22 15:09:08 thomas Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_user.sgml,v 1.9 1999/10/07 16:40:36 momjian Exp $
33
Postgres documentation
44
-->
55

@@ -249,7 +249,7 @@ CREATE USER jonathan
249249
Create a user with a password:
250250

251251
<programlisting>
252-
CREATE USER davide WITH PASSWORD jw8s0F4
252+
CREATE USER davide WITH PASSWORD "jw8s0F4"
253253
</programlisting>
254254
</para>
255255

@@ -259,15 +259,15 @@ CREATE USER davide WITH PASSWORD jw8s0F4
259259
valid:
260260

261261
<programlisting>
262-
CREATE USER miriam WITH PASSWORD jw8s0F4 VALID UNTIL 'Jan 1 2002'
262+
CREATE USER miriam WITH PASSWORD "jw8s0F4" VALID UNTIL 'Jan 1 2002'
263263
</programlisting>
264264
</para>
265265

266266
<para>
267267
Create an account where the user can create databases:
268268

269269
<programlisting>
270-
CREATE USER manuel WITH PASSWORD jw8s0F4 CREATEDB
270+
CREATE USER manuel WITH PASSWORD "jw8s0F4" CREATEDB
271271
</programlisting>
272272
</para>
273273
</refsect1>

0 commit comments

Comments
 (0)