summaryrefslogtreecommitdiff
path: root/src/bin/psql/psql.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1998-07-26 01:18:09 +0000
committerBruce Momjian <bruce@momjian.us>1998-07-26 01:18:09 +0000
commit01a651aaf945353422795ab6db5a4ebfc6e4b085 (patch)
treec7b1bea690d82391fbdfedf3fcd4fedfe7e75a87 /src/bin/psql/psql.c
parentd8d0aa019bc89e7cdc9c9c0ebd4f7e398d5248fe (diff)
downloadpostgresql-01a651aaf945353422795ab6db5a4ebfc6e4b085.tar.gz
Fix compile error. Make transaction/work optional on all transaction
statements. More cleanups of psql help. Fix for shift/reduce on UNION in subselect.
Diffstat (limited to 'src/bin/psql/psql.c')
-rw-r--r--src/bin/psql/psql.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c
index 28237901f7..eba14a2881 100644
--- a/src/bin/psql/psql.c
+++ b/src/bin/psql/psql.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.148 1998/07/18 18:34:14 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.149 1998/07/26 01:18:07 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -1575,7 +1575,7 @@ do_help(PsqlSettings *pset, const char *topic)
help_found = false; /* Haven't found it yet */
for (i = 0; QL_HELP[i].cmd; i++)
{
- if (strcmp(QL_HELP[i].cmd, topic) == 0 ||
+ if (strcasecmp(QL_HELP[i].cmd, topic) == 0 ||
strcmp(topic, "*") == 0)
{
help_found = true;