Commit 558833ca authored by Bruce Momjian's avatar Bruce Momjian

Add quotes to password example.

parent 79cb5f76
...@@ -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
......
<!-- <!--
$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>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment