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.
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.