diff options
Diffstat (limited to 'src/bin/psql/describe.c')
-rw-r--r-- | src/bin/psql/describe.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c index 49553268c63..603c7090226 100644 --- a/src/bin/psql/describe.c +++ b/src/bin/psql/describe.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.119 2005/07/01 17:40:28 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.120 2005/07/02 17:01:52 momjian Exp $ */ #include "postgres_fe.h" #include "describe.h" @@ -1898,8 +1898,8 @@ processNamePattern(PQExpBuffer buf, const char *pattern, appendPQExpBuffer(&namebuf, "\\\\"); /* Ensure chars special to string literals are passed properly */ - if (*cp == '\'' || *cp == '\\') - appendPQExpBufferChar(&namebuf, *cp); /* double these */ + if (SQL_STR_DOUBLE(*cp)) + appendPQExpBufferChar(&namebuf, *cp); i = PQmblen(cp, pset.encoding); while (i--) |