From 6706194e4eaa0b7bb56ef4c92c55c8a7b72c904b Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 9 May 2000 18:55:56 +0000 Subject: [PATCH] Fix psql quotes in docs. --- doc/src/sgml/ref/psql-ref.sgml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml index 77a2ae8f91..787ae32602 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 -- 2.11.0