From 1bf3d615047eb214b1ddde31bd268dabf96cc3fa Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Wed, 28 Jul 2004 14:23:31 +0000 Subject: Fix subtransaction behavior for large objects, temp namespace, files, password/group files. Also allow read-only subtransactions of a read-write parent, but not vice versa. These are the reasonably noncontroversial parts of Alvaro's recent mop-up patch, plus further work on large objects to minimize use of the TopTransactionResourceOwner. --- src/backend/utils/cache/inval.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/backend/utils/cache/inval.c') diff --git a/src/backend/utils/cache/inval.c b/src/backend/utils/cache/inval.c index e54a74fae4b..946bd0c9eb7 100644 --- a/src/backend/utils/cache/inval.c +++ b/src/backend/utils/cache/inval.c @@ -80,7 +80,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/cache/inval.c,v 1.63 2004/07/01 00:51:17 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/utils/cache/inval.c,v 1.64 2004/07/28 14:23:29 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -678,7 +678,7 @@ AtEOXact_Inval(bool isCommit) } /* - * AtSubEOXact_Inval + * AtEOSubXact_Inval * Process queued-up invalidation messages at end of subtransaction. * * If isCommit, process CurrentCmdInvalidMsgs if any (there probably aren't), @@ -695,7 +695,7 @@ AtEOXact_Inval(bool isCommit) * (if aborting). */ void -AtSubEOXact_Inval(bool isCommit) +AtEOSubXact_Inval(bool isCommit) { TransInvalidationInfo *myInfo = transInvalInfo; -- cgit v1.2.3