OSDN Git Service

Add DISCARD to the command_no_begin list for AUTOCOMMIT=off.
authorItagaki Takahiro <itagaki.takahiro@gmail.com>
Tue, 28 Sep 2010 05:20:17 +0000 (14:20 +0900)
committerItagaki Takahiro <itagaki.takahiro@gmail.com>
Tue, 28 Sep 2010 05:20:17 +0000 (14:20 +0900)
Backpatch to 8.3.

Reported by Sergey Burladyan.

src/bin/psql/common.c

index c2c572c..7ba2f73 100644 (file)
@@ -1388,6 +1388,9 @@ command_no_begin(const char *query)
                        return true;
        }
 
+       if (wordlen == 7 && pg_strncasecmp(query, "discard", 7) == 0)
+               return true;
+
        return false;
 }