From e8b57bacacb8ddaaab3e832fc374c85b55f59b99 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 28 Sep 2010 14:47:25 -0400 Subject: [PATCH] Fix another small oversight in command_no_begin patch. Need a "return false" to prevent tests from continuing after we've moved the "query" pointer. As it stood, it'd accept "DROP DISCARD ALL" as a match. --- src/bin/psql/common.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/psql/common.c b/src/bin/psql/common.c index 81a633a3d0..76cba901e0 100644 --- a/src/bin/psql/common.c +++ b/src/bin/psql/common.c @@ -1367,6 +1367,7 @@ command_no_begin(const char *query) return true; if (wordlen == 10 && pg_strncasecmp(query, "tablespace", 10) == 0) return true; + return false; } /* DISCARD ALL isn't allowed in xacts, but other variants are allowed. */ @@ -1382,6 +1383,7 @@ command_no_begin(const char *query) if (wordlen == 3 && pg_strncasecmp(query, "all", 3) == 0) return true; + return false; } return false;