aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/cluster.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/cluster.c
parent8d47a908626bf0800dc6a01f4ff2b2bc15cdaf86 (diff)
downloadpostgresql-04700b685f31508036456bea4d92533e5ceee9d6.tar.gz
postgresql-04700b685f31508036456bea4d92533e5ceee9d6.zip
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/cluster.c')
-rw-r--r--src/backend/commands/cluster.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/cluster.c b/src/backend/commands/cluster.c
index 5d481dd50de..96a51bb7603 100644
--- a/src/backend/commands/cluster.c
+++ b/src/backend/commands/cluster.c
@@ -202,7 +202,7 @@ cluster(ClusterStmt *stmt, bool isTopLevel)
* We cannot run this form of CLUSTER inside a user transaction block;
* we'd be holding locks way too long.
*/
- PreventTransactionChain(isTopLevel, "CLUSTER");
+ PreventInTransactionBlock(isTopLevel, "CLUSTER");
/*
* Create special memory context for cross-transaction storage.