Skip to content

Commit fe9ba28

Browse files
committed
Fix typo in README.
s/BeginInternalSubtransaction/BeginInternalSubTransaction/
1 parent 6476b26 commit fe9ba28

File tree

1 file changed

+2
-2
lines changed
  • src/backend/access/transam

1 file changed

+2
-2
lines changed

src/backend/access/transam/README

+2-2
Original file line numberDiff line numberDiff line change
@@ -177,13 +177,13 @@ subtransaction level with the same name. So it's a completely new
177177
subtransaction as far as the internals are concerned.
178178

179179
Other subsystems are allowed to start "internal" subtransactions, which are
180-
handled by BeginInternalSubtransaction. This is to allow implementing
180+
handled by BeginInternalSubTransaction. This is to allow implementing
181181
exception handling, e.g. in PL/pgSQL. ReleaseCurrentSubTransaction and
182182
RollbackAndReleaseCurrentSubTransaction allows the subsystem to close said
183183
subtransactions. The main difference between this and the savepoint/release
184184
path is that we execute the complete state transition immediately in each
185185
subroutine, rather than deferring some work until CommitTransactionCommand.
186-
Another difference is that BeginInternalSubtransaction is allowed when no
186+
Another difference is that BeginInternalSubTransaction is allowed when no
187187
explicit transaction block has been established, while DefineSavepoint is not.
188188

189189

0 commit comments

Comments
 (0)