@@ -177,13 +177,13 @@ subtransaction level with the same name. So it's a completely new
177
177
subtransaction as far as the internals are concerned.
178
178
179
179
Other subsystems are allowed to start "internal" subtransactions, which are
180
- handled byBeginInternalSubtransaction . This is to allow implementing
180
+ handled byBeginInternalSubTransaction . This is to allow implementing
181
181
exception handling, e.g. in PL/pgSQL. ReleaseCurrentSubTransaction and
182
182
RollbackAndReleaseCurrentSubTransaction allows the subsystem to close said
183
183
subtransactions. The main difference between this and the savepoint/release
184
184
path is that we execute the complete state transition immediately in each
185
185
subroutine, rather than deferring some work until CommitTransactionCommand.
186
- Another difference is thatBeginInternalSubtransaction is allowed when no
186
+ Another difference is thatBeginInternalSubTransaction is allowed when no
187
187
explicit transaction block has been established, while DefineSavepoint is not.
188
188
189
189