summaryrefslogtreecommitdiff
path: root/src/backend/commands/discard.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2018-02-16 20:44:15 -0500
committerPeter Eisentraut <peter_e@gmx.net>2018-03-16 13:18:06 -0400
commit04700b685f31508036456bea4d92533e5ceee9d6 (patch)
treef3fc6cddf9f5764decbaa76c5c5423fdcd873a36 /src/backend/commands/discard.c
parent8d47a908626bf0800dc6a01f4ff2b2bc15cdaf86 (diff)
Rename TransactionChain functions
We call this thing a "transaction block" everywhere except in a few functions, where it is mysteriously called a "transaction chain". In the SQL standard, a transaction chain is something different. So rename these functions to match the common terminology. Reviewed-by: Alvaro Herrera <alvherre@alvh.no-ip.org>
Diffstat (limited to 'src/backend/commands/discard.c')
-rw-r--r--src/backend/commands/discard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/discard.c b/src/backend/commands/discard.c
index 353ec990af3..01a999c2ac7 100644
--- a/src/backend/commands/discard.c
+++ b/src/backend/commands/discard.c
@@ -63,7 +63,7 @@ DiscardAll(bool isTopLevel)
* DISCARD ALL inside a transaction block would leave the transaction
* still uncommitted.
*/
- PreventTransactionChain(isTopLevel, "DISCARD ALL");
+ PreventInTransactionBlock(isTopLevel, "DISCARD ALL");
/* Closing portals might run user-defined code, so do that first. */
PortalHashTableDeleteAll();