aboutsummaryrefslogtreecommitdiff
path: root/src/include/commands/cluster.h
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2013-09-16 15:45:00 -0300
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2013-09-16 15:56:11 -0300
commit3451faaec81c8d19acdb243bfc22598c33ab074d (patch)
tree7556990ce8e40d7a07488c8681c1a37bbe46f7ab /src/include/commands/cluster.h
parent374652fb6dc53a12f79586ce0e77f1ec22d58a80 (diff)
downloadpostgresql-3451faaec81c8d19acdb243bfc22598c33ab074d.tar.gz
postgresql-3451faaec81c8d19acdb243bfc22598c33ab074d.zip
Rename various "freeze multixact" variables
It seems to make more sense to use "cutoff multixact" terminology throughout the backend code; "freeze" is associated with replacing of an Xid with FrozenTransactionId, which is not what we do for MultiXactIds. Andres Freund Some adjustments by Álvaro Herrera
Diffstat (limited to 'src/include/commands/cluster.h')
-rw-r--r--src/include/commands/cluster.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/commands/cluster.h b/src/include/commands/cluster.h
index aa6d332e9d2..52ca1d1c797 100644
--- a/src/include/commands/cluster.h
+++ b/src/include/commands/cluster.h
@@ -32,6 +32,6 @@ extern void finish_heap_swap(Oid OIDOldHeap, Oid OIDNewHeap,
bool check_constraints,
bool is_internal,
TransactionId frozenXid,
- MultiXactId frozenMulti);
+ MultiXactId minMulti);
#endif /* CLUSTER_H */