We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce9b75d commit 3228a92Copy full SHA for 3228a92
src/bin/psql/print.c
@@ -3,7 +3,7 @@
3
*
4
* Copyright (c) 2000-2005, PostgreSQL Global Development Group
5
6
- * $PostgreSQL: pgsql/src/bin/psql/print.c,v 1.83 2006/02/12 02:56:21 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/print.c,v 1.84 2006/02/18 22:54:50 petere Exp $
7
*/
8
#include "postgres_fe.h"
9
#include "common.h"
@@ -918,9 +918,6 @@ html_escaped_print(const char *in, FILE *fout)
918
case '"':
919
fputs(""", fout);
920
break;
921
- case '\'':
922
- fputs("'", fout);
923
- break;
924
case ' ':
925
/* protect leading space, for EXPLAIN output */
926
if (leading_space)
0 commit comments