diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2012-04-16 22:40:54 +0300 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2012-04-16 22:40:54 +0300 |
commit | cf714c81086a85b7558a84ebd024f6a5eec2a5ee (patch) | |
tree | d778caf4d2459f9670651fc2c43096e953f5c854 | |
parent | a33fcd7e79d7e1544030160de177aee847bb7648 (diff) | |
download | postgresql-cf714c81086a85b7558a84ebd024f6a5eec2a5ee.tar.gz postgresql-cf714c81086a85b7558a84ebd024f6a5eec2a5ee.zip |
Add compatibility information for prepared transaction commands
-rw-r--r-- | doc/src/sgml/ref/commit_prepared.sgml | 12 | ||||
-rw-r--r-- | doc/src/sgml/ref/prepare_transaction.sgml | 12 | ||||
-rw-r--r-- | doc/src/sgml/ref/rollback_prepared.sgml | 12 |
3 files changed, 36 insertions, 0 deletions
diff --git a/doc/src/sgml/ref/commit_prepared.sgml b/doc/src/sgml/ref/commit_prepared.sgml index 2af677fcb06..ecd0c525f20 100644 --- a/doc/src/sgml/ref/commit_prepared.sgml +++ b/doc/src/sgml/ref/commit_prepared.sgml @@ -84,6 +84,18 @@ COMMIT PREPARED 'foobar'; </refsect1> <refsect1> + <title>Compatibility</title> + + <para> + <command>COMMIT PREPARED</command> is a + <productname>PostgreSQL</productname> extension. It is intended for use by + external transaction management systems, some of which are covered by + standards (such as X/Open XA), but the SQL side of those systems is not + standardized. + </para> + </refsect1> + + <refsect1> <title>See Also</title> <simplelist type="inline"> diff --git a/doc/src/sgml/ref/prepare_transaction.sgml b/doc/src/sgml/ref/prepare_transaction.sgml index a10aa35d386..a379819a0aa 100644 --- a/doc/src/sgml/ref/prepare_transaction.sgml +++ b/doc/src/sgml/ref/prepare_transaction.sgml @@ -157,6 +157,18 @@ PREPARE TRANSACTION 'foobar'; </refsect1> <refsect1> + <title>Compatibility</title> + + <para> + <command>PREPARE TRANSACTION</command> is a + <productname>PostgreSQL</productname> extension. It is intended for use by + external transaction management systems, some of which are covered by + standards (such as X/Open XA), but the SQL side of those systems is not + standardized. + </para> + </refsect1> + + <refsect1> <title>See Also</title> <simplelist type="inline"> diff --git a/doc/src/sgml/ref/rollback_prepared.sgml b/doc/src/sgml/ref/rollback_prepared.sgml index 9592b92f321..514e5ae441a 100644 --- a/doc/src/sgml/ref/rollback_prepared.sgml +++ b/doc/src/sgml/ref/rollback_prepared.sgml @@ -84,6 +84,18 @@ ROLLBACK PREPARED 'foobar'; </refsect1> <refsect1> + <title>Compatibility</title> + + <para> + <command>ROLLBACK PREPARED</command> is a + <productname>PostgreSQL</productname> extension. It is intended for use by + external transaction management systems, some of which are covered by + standards (such as X/Open XA), but the SQL side of those systems is not + standardized. + </para> + </refsect1> + + <refsect1> <title>See Also</title> <simplelist type="inline"> |