From 01a651aaf945353422795ab6db5a4ebfc6e4b085 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sun, 26 Jul 1998 01:18:09 +0000 Subject: Fix compile error. Make transaction/work optional on all transaction statements. More cleanups of psql help. Fix for shift/reduce on UNION in subselect. --- src/bin/psql/psql.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/bin/psql/psql.c') 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; -- cgit v1.2.1