projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4d355a8
)
Add DISCARD to the command_no_begin list for AUTOCOMMIT=off.
author
Itagaki Takahiro
<
[email protected]
>
Tue, 28 Sep 2010 05:20:17 +0000
(14:20 +0900)
committer
Itagaki Takahiro
<
[email protected]
>
Tue, 28 Sep 2010 05:20:17 +0000
(14:20 +0900)
Backpatch to 8.3.
Reported by Sergey Burladyan.
src/bin/psql/common.c
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/psql/common.c
b/src/bin/psql/common.c
index c2c572c42da25b3065e19ac9f5450b6f2b14fd61..7ba2f73c5d0a664f1104a3520d2fbb3f898333a9 100644
(file)
--- a/
src/bin/psql/common.c
+++ b/
src/bin/psql/common.c
@@
-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;
}