]> granicus.if.org Git - postgresql/commit - src/bin/psql/common.c
Prevent psql from issuing BEGIN before ALTER SYSTEM when AUTOCOMMIT is off.
authorFujii Masao <fujii@postgresql.org>
Wed, 2 Jul 2014 03:42:20 +0000 (12:42 +0900)
committerFujii Masao <fujii@postgresql.org>
Wed, 2 Jul 2014 03:42:20 +0000 (12:42 +0900)
commitd97e98e8337e915e3404f7b2a8a6b966b6f5394f
treea050b06148339ece24ac68b2a6a76b8e93011dba
parentfbb1d7d73f8e23a3a61e702629c53cef48cb0918
Prevent psql from issuing BEGIN before ALTER SYSTEM when AUTOCOMMIT is off.

The autocommit-off mode works by issuing an implicit BEGIN just before
any command that is not already in a transaction block and is not itself
a BEGIN or other transaction-control command, nor a command that
cannot be executed inside a transaction block. This commit prevents psql
from issuing such an implicit BEGIN before ALTER SYSTEM because it's
not allowed inside a transaction block.

Backpatch to 9.4 where ALTER SYSTEM was added.

Report by Feike Steenbergen
src/bin/psql/common.c