diff --git a/doc/src/sgml/ref/savepoint.sgml b/doc/src/sgml/ref/savepoint.sgml index c327b6b..90d3895 100644 *** a/doc/src/sgml/ref/savepoint.sgml --- b/doc/src/sgml/ref/savepoint.sgml *************** COMMIT; *** 115,124 **** SQL requires a savepoint to be destroyed automatically when another savepoint with the same name is established. In PostgreSQL, the old savepoint is kept, though only the more ! recent one will be used when rolling back or releasing. (Releasing the ! newer savepoint will cause the older one to again become accessible to ! ROLLBACK TO SAVEPOINT and RELEASE SAVEPOINT.) ! Otherwise, SAVEPOINT is fully SQL conforming. --- 115,125 ---- SQL requires a savepoint to be destroyed automatically when another savepoint with the same name is established. In PostgreSQL, the old savepoint is kept, though only the more ! recent one will be used when rolling back or releasing. (Explicitly ! releasing the newer savepoint with RELEASE SAVEPOINT will cause ! the older one to again become accessible to ROLLBACK TO SAVEPOINT ! and RELEASE SAVEPOINT.) Otherwise, SAVEPOINT is ! fully SQL conforming.