mirror of
https://github.com/postgres/postgres.git
synced 2025-08-25 20:23:07 +03:00
Some mop-up work for savepoints (nested transactions). Store a small
number of active subtransaction XIDs in each backend's PGPROC entry, and use this to avoid expensive probes into pg_subtrans during TransactionIdIsInProgress. Extend EOXactCallback API to allow add-on modules to get control at subxact start/end. (This is deliberately not compatible with the former API, since any uses of that API probably need manual review anyway.) Add basic reference documentation for SAVEPOINT and related commands. Minor other cleanups to check off some of the open issues for subtransactions. Alvaro Herrera and Tom Lane.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<!-- reference.sgml
|
||||
$PostgreSQL: pgsql/doc/src/sgml/reference.sgml,v 1.50 2004/06/25 21:55:51 tgl Exp $
|
||||
$PostgreSQL: pgsql/doc/src/sgml/reference.sgml,v 1.51 2004/08/01 17:32:11 tgl Exp $
|
||||
|
||||
PostgreSQL Reference Manual
|
||||
-->
|
||||
@@ -120,9 +120,12 @@ PostgreSQL Reference Manual
|
||||
¬ify;
|
||||
&prepare;
|
||||
&reindex;
|
||||
&releaseSavepoint;
|
||||
&reset;
|
||||
&revoke;
|
||||
&rollback;
|
||||
&rollbackTo;
|
||||
&savepoint;
|
||||
&select;
|
||||
&selectInto;
|
||||
&set;
|
||||
|
Reference in New Issue
Block a user