Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit ecef326

Browse files
committed
Fix \pset null to use ', not ".
1 parent c4e63f7 commit ecef326

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/psql/command.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Copyright 2000 by PostgreSQL Global Development Group
55
*
6-
* $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.33 2000/05/12 00:54:53 momjian Exp $
6+
* $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.34 2000/06/26 14:16:34 momjian Exp $
77
*/
88
#include "postgres.h"
99
#include "command.h"
@@ -1647,7 +1647,7 @@ do_pset(const char *param, const char *value, printQueryOpt *popt, bool quiet)
16471647
popt->nullPrint = xstrdup(value);
16481648
}
16491649
if (!quiet)
1650-
printf("Null display is \"%s\".\n", popt->nullPrint ? popt->nullPrint : "");
1650+
printf("Null display is '%s'.\n", popt->nullPrint ? popt->nullPrint : "");
16511651
}
16521652

16531653
/* field separator for unaligned text */

0 commit comments

Comments
 (0)