From: Bruce Momjian Date: Thu, 7 Oct 1999 16:40:36 +0000 (+0000) Subject: Add quotes to password example. X-Git-Tag: REL7_0~1356 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=558833caddcb5c833d60283e4bb017b020362909;p=postgresql Add quotes to password example. --- diff --git a/doc/TODO b/doc/TODO index 21aa2bcfbf..3ae932fb68 100644 --- a/doc/TODO +++ b/doc/TODO @@ -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 diff --git a/doc/src/sgml/ref/create_user.sgml b/doc/src/sgml/ref/create_user.sgml index 2fb2c24eb1..b7a55d05d4 100644 --- a/doc/src/sgml/ref/create_user.sgml +++ b/doc/src/sgml/ref/create_user.sgml @@ -1,5 +1,5 @@ @@ -249,7 +249,7 @@ CREATE USER jonathan Create a user with a password: -CREATE USER davide WITH PASSWORD jw8s0F4 +CREATE USER davide WITH PASSWORD "jw8s0F4" @@ -259,7 +259,7 @@ CREATE USER davide WITH PASSWORD jw8s0F4 valid: -CREATE USER miriam WITH PASSWORD jw8s0F4 VALID UNTIL 'Jan 1 2002' +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 USER manuel WITH PASSWORD jw8s0F4 CREATEDB +CREATE USER manuel WITH PASSWORD "jw8s0F4" CREATEDB