File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 53
53
* SELECT COUNT('asdf') FROM pg_class WHERE oid=12 crashes
54
54
* SELECT DISTINCT ON col1 col1 col2 FROM tab1 is broken [distinct]
55
55
* -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)
57
57
58
58
VIEWS
59
59
Original file line number Diff line number Diff line change 1
1
<!--
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 $
3
3
Postgres documentation
4
4
-->
5
5
@@ -249,7 +249,7 @@ CREATE USER jonathan
249
249
Create a user with a password:
250
250
251
251
<programlisting>
252
- CREATE USER davide WITH PASSWORD jw8s0F4
252
+ CREATE USER davide WITH PASSWORD " jw8s0F4"
253
253
</programlisting>
254
254
</para>
255
255
@@ -259,15 +259,15 @@ CREATE USER davide WITH PASSWORD jw8s0F4
259
259
valid:
260
260
261
261
<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'
263
263
</programlisting>
264
264
</para>
265
265
266
266
<para>
267
267
Create an account where the user can create databases:
268
268
269
269
<programlisting>
270
- CREATE USER manuel WITH PASSWORD jw8s0F4 CREATEDB
270
+ CREATE USER manuel WITH PASSWORD " jw8s0F4" CREATEDB
271
271
</programlisting>
272
272
</para>
273
273
</refsect1>
You can’t perform that action at this time.
0 commit comments