projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0cf7212
)
Doc: mention that you can't PREPARE TRANSACTION after NOTIFY.
author
Tom Lane
Fri, 27 Oct 2017 14:46:07 +0000
(10:46 -0400)
committer
Tom Lane
Fri, 27 Oct 2017 14:46:07 +0000
(10:46 -0400)
The NOTIFY page said this already, but the PREPARE TRANSACTION page
missed it.
Discussion: https://postgr.es/m/
20171024010602
[email protected]
doc/src/sgml/ref/prepare_transaction.sgml
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/ref/prepare_transaction.sgml
b/doc/src/sgml/ref/prepare_transaction.sgml
index a379819a0aac8b6cb115e92df78475b5feded4e2..3c554755409175695597a6a76e39ffa1b99d3283 100644
(file)
--- a/
doc/src/sgml/ref/prepare_transaction.sgml
+++ b/
doc/src/sgml/ref/prepare_transaction.sgml
@@
-100,7
+100,8
@@
PREPARE TRANSACTION
transaction_id
It is not currently allowed to
PREPARE> a transaction that
has executed any operations involving temporary tables,
created any cursors
WITH HOLD>, or executed
-
LISTEN> or
UNLISTEN>.
+
LISTEN>,
UNLISTEN>, or
+
NOTIFY>.
Those features are too tightly
tied to the current session to be useful in a transaction to be prepared.