From 6706194e4eaa0b7bb56ef4c92c55c8a7b72c904b Mon Sep 17 00:00:00 2001
From: Bruce Momjian
Date: Tue, 9 May 2000 18:55:56 +0000
Subject: Fix psql quotes in docs.
---
doc/src/sgml/ref/psql-ref.sgml | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
(limited to 'doc/src')
diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml
index 77a2ae8f916..787ae32602a 100644
--- a/doc/src/sgml/ref/psql-ref.sgml
+++ b/doc/src/sgml/ref/psql-ref.sgml
@@ -1,5 +1,5 @@
@@ -851,7 +851,7 @@ lo_import 152801
The second argument is a string that should be printed whenever a field
is null. The default is not to print anything, which can easily be mistaken
for, say, an empty string. Thus, one might choose to write
- \pset null "(null)".
+ \pset null '(null)'.
@@ -863,8 +863,8 @@ lo_import 152801
Specifies the field separator to be used in unaligned output mode. That way
one can create, for example, tab- or comma-separated output, which other
programs might prefer. To set a tab as field separator, type
- \pset fieldsep "\t". The default field separator is
- |
(a pipe
symbol).
+ \pset fieldsep '\t'. The default field separator is
+ '|' (a pipe
symbol).
@@ -2151,8 +2151,8 @@ $ ./configure --with-includes=/opt/gnu/include --with-libs=/opt/gnu/lib ...
Notice the changing prompt.
testdb=> CREATE TABLE my_table (
-testdb-> first integer not null default 0,
-testdb-> second text
+testdb(> first integer not null default 0,
+testdb(> second text
testdb-> );
CREATE
--
cgit v1.2.3