Add quotes to password example.

This commit is contained in:
Bruce Momjian 1999-10-07 16:40:36 +00:00
parent 79cb5f76e9
commit 558833cadd
2 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -1,5 +1,5 @@
<!-- <!--
$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
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
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'
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>