mirror of
https://github.com/postgres/postgres.git
synced 2026-04-26 08:37:12 -04:00
Minor improvements to transaction manager README.
A simple SELECT is handled by PortalRunSelect, not ProcessQuery. Also, the previous indentation was unclear: change it so that a deeper level of indentation indicates that the outer function calls the inner one. Stas Kelvich
This commit is contained in:
parent
17b124d303
commit
6fcde8a5c8
1 changed files with 6 additions and 6 deletions
|
|
@ -61,23 +61,23 @@ sequence:
|
|||
|
||||
/ StartTransactionCommand;
|
||||
/ StartTransaction;
|
||||
1) < ProcessUtility; << BEGIN
|
||||
1) < ProcessUtility; << BEGIN
|
||||
\ BeginTransactionBlock;
|
||||
\ CommitTransactionCommand;
|
||||
|
||||
/ StartTransactionCommand;
|
||||
2) / ProcessQuery; << SELECT ...
|
||||
\ CommitTransactionCommand;
|
||||
2) / PortalRunSelect; << SELECT ...
|
||||
\ CommitTransactionCommand;
|
||||
\ CommandCounterIncrement;
|
||||
|
||||
/ StartTransactionCommand;
|
||||
3) / ProcessQuery; << INSERT ...
|
||||
\ CommitTransactionCommand;
|
||||
3) / ProcessQuery; << INSERT ...
|
||||
\ CommitTransactionCommand;
|
||||
\ CommandCounterIncrement;
|
||||
|
||||
/ StartTransactionCommand;
|
||||
/ ProcessUtility; << COMMIT
|
||||
4) < EndTransactionBlock;
|
||||
4) < EndTransactionBlock;
|
||||
\ CommitTransactionCommand;
|
||||
\ CommitTransaction;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue