*
* Copyright 2000-2002 by PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/describe.c,v 1.71.2.2 2006/10/07 22:22:04 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/bin/psql/describe.c,v 1.71.2.3 2006/10/10 16:15:42 tgl Exp $
*/
#include "postgres_fe.h"
#include "describe.h"
{
/* We have a schema pattern, so constrain the schemavar */
- appendPQExpBufferChar(&schemabuf, '$');
- /* Optimize away ".*$", and possibly the whole pattern */
- if (schemabuf.len >= 3 &&
- strcmp(schemabuf.data + (schemabuf.len - 3), ".*$") == 0)
- schemabuf.data[schemabuf.len - 3] = '\0';
-
- if (schemabuf.data[0] && schemavar)
+ /* Optimize away a "*" pattern */
+ if (strcmp(schemabuf.data, ".*") != 0 && schemavar)
{
WHEREAND();
- appendPQExpBuffer(buf, "%s ~ '^%s'\n",
+ appendPQExpBuffer(buf, "%s ~ '^(%s)$'\n",
schemavar, schemabuf.data);
}
}
{
/* We have a name pattern, so constrain the namevar(s) */
- appendPQExpBufferChar(&namebuf, '$');
- /* Optimize away ".*$", and possibly the whole pattern */
- if (namebuf.len >= 3 &&
- strcmp(namebuf.data + (namebuf.len - 3), ".*$") == 0)
- namebuf.data[namebuf.len - 3] = '\0';
-
- if (namebuf.data[0])
+ /* Optimize away a "*" pattern */
+ if (strcmp(namebuf.data, ".*") != 0)
{
WHEREAND();
if (altnamevar)
appendPQExpBuffer(buf,
- "(%s ~ '^%s'\n"
- " OR %s ~ '^%s')\n",
+ "(%s ~ '^(%s)$'\n"
+ " OR %s ~ '^(%s)$')\n",
namevar, namebuf.data,
altnamevar, namebuf.data);
else
appendPQExpBuffer(buf,
- "%s ~ '^%s'\n",
+ "%s ~ '^(%s)$'\n",
namevar, namebuf.data);
}
}