aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2017-10-05 15:05:49 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2017-10-05 15:06:01 -0400
commitfe9ba28ee852bb968bc8948d172c6bc0c70c50df (patch)
tree5cde10a4286a7dcee89bfcecb451edb05c25af9d
parent6476b26115f3ef25a9cd87880e0ac5ec5f7a05f6 (diff)
downloadpostgresql-fe9ba28ee852bb968bc8948d172c6bc0c70c50df.tar.gz
postgresql-fe9ba28ee852bb968bc8948d172c6bc0c70c50df.zip
Fix typo in README.
s/BeginInternalSubtransaction/BeginInternalSubTransaction/
-rw-r--r--src/backend/access/transam/README4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/transam/README b/src/backend/access/transam/README
index e7dd19fd7b9..ad4083eb6b5 100644
--- a/src/backend/access/transam/README
+++ b/src/backend/access/transam/README
@@ -177,13 +177,13 @@ subtransaction level with the same name. So it's a completely new
subtransaction as far as the internals are concerned.
Other subsystems are allowed to start "internal" subtransactions, which are
-handled by BeginInternalSubtransaction. This is to allow implementing
+handled by BeginInternalSubTransaction. This is to allow implementing
exception handling, e.g. in PL/pgSQL. ReleaseCurrentSubTransaction and
RollbackAndReleaseCurrentSubTransaction allows the subsystem to close said
subtransactions. The main difference between this and the savepoint/release
path is that we execute the complete state transition immediately in each
subroutine, rather than deferring some work until CommitTransactionCommand.
-Another difference is that BeginInternalSubtransaction is allowed when no
+Another difference is that BeginInternalSubTransaction is allowed when no
explicit transaction block has been established, while DefineSavepoint is not.