files.
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/bin/pg_dump/dumputils.c,v 1.17 2005/04/30 08:08:51 neilc Exp $
+ * $PostgreSQL: pgsql/src/bin/pg_dump/dumputils.c,v 1.18 2005/07/01 21:03:25 momjian Exp $
*
*-------------------------------------------------------------------------
*/
void
appendStringLiteral(PQExpBuffer buf, const char *str, bool escapeAll)
{
+ bool has_escapes = false;
+ const char *str2 = str;
+
+ while (*str2)
+ {
+ char ch = *str2++;
+
+ if (ch == '\\' ||
+ ((unsigned char) ch < (unsigned char) ' ' &&
+ (escapeAll ||
+ (ch != '\t' && ch != '\n' && ch != '\v' &&
+ ch != '\f' && ch != '\r'))))
+ {
+ has_escapes = true;
+ break;
+ }
+ }
+
+ if (has_escapes)
+ appendPQExpBufferChar(buf, 'E');
+
appendPQExpBufferChar(buf, '\'');
while (*str)
{
appendPQExpBufferChar(buf, ch);
}
else if ((unsigned char) ch < (unsigned char) ' ' &&
- (escapeAll
- || (ch != '\t' && ch != '\n' && ch != '\v' && ch != '\f' && ch != '\r')
- ))
+ (escapeAll ||
+ (ch != '\t' && ch != '\n' && ch != '\v' &&
+ ch != '\f' && ch != '\r')))
{
/*
* generate octal escape for control chars other than
* Implements the basic DB functions used by the archiver.
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_db.c,v 1.62 2005/06/21 20:45:44 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_db.c,v 1.63 2005/07/01 21:03:25 momjian Exp $
*
*-------------------------------------------------------------------------
*/
}
else
{
-
if (qry[pos] == '\\')
{
if (AH->sqlparse.lastChar == '\\')
* by PostgreSQL
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.c,v 1.411 2005/06/30 03:02:56 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.c,v 1.412 2005/07/01 21:03:25 momjian Exp $
*
*-------------------------------------------------------------------------
*/
p = tginfo->tgargs;
for (findx = 0; findx < tginfo->tgnargs; findx++)
{
- const char *s = p;
+ const char *s = p, *s2 = p;
+ /* Set 'p' to end of arg string. marked by '\000' */
for (;;)
{
p = strchr(p, '\\');
exit_nicely();
}
p++;
- if (*p == '\\')
+ if (*p == '\\') /* is it '\\'? */
{
p++;
continue;
}
- if (p[0] == '0' && p[1] == '0' && p[2] == '0')
+ if (p[0] == '0' && p[1] == '0' && p[2] == '0') /* is it '\000'? */
break;
}
p--;
+
+ /* do we need E''? */
+ while (s2 < p)
+ if (*s2++ == '\\')
+ {
+ appendPQExpBufferChar(query, 'E');
+ break;
+ }
+
appendPQExpBufferChar(query, '\'');
while (s < p)
{
if (*s == '\'')
- appendPQExpBufferChar(query, '\\');
+ appendPQExpBufferChar(query, '\'');
appendPQExpBufferChar(query, *s++);
}
appendPQExpBufferChar(query, '\'');