From aa5bec67dee9bbd9929a468211d004c448859635 Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Thu, 27 May 2010 06:25:32 +0000 Subject: [PATCH] Make it more clear that you need to release savepoint with RELEASE SAVEPOINT to make an older savepoint with the same name accessible. It's also possible to implicitly release the savepoint by rolling back to an earlier savepoint, but mentioning that too would make the note just more verbose and confusing. --- doc/src/sgml/ref/savepoint.sgml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/doc/src/sgml/ref/savepoint.sgml b/doc/src/sgml/ref/savepoint.sgml index 72b718fcf6..d2c58e5b66 100644 --- a/doc/src/sgml/ref/savepoint.sgml +++ b/doc/src/sgml/ref/savepoint.sgml @@ -1,5 +1,5 @@ @@ -116,9 +116,10 @@ COMMIT; 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. + 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. -- 2.40.0