]> granicus.if.org Git - postgresql/commitdiff
Fix typo in README.
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 5 Oct 2017 19:05:49 +0000 (15:05 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 5 Oct 2017 19:06:01 +0000 (15:06 -0400)
s/BeginInternalSubtransaction/BeginInternalSubTransaction/

src/backend/access/transam/README

index e7dd19fd7b9dcf4b7ca2d75ac5cf6d5898b43867..ad4083eb6b5e81eb9543b8afed5a49fd7f7b6647 100644 (file)
@@ -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.