Re: existence of a savepoint?

From: Stuart McGraw <smcg4191(at)mtneva(dot)com>
To: pgsql-general(at)postgresql(dot)org
Cc: Brian Dunavant <brian(at)omniti(dot)com>
Subject: Re: existence of a savepoint?
Date: 2018-05-29 22:50:58
Message-ID: 66ad0952-16b1-00d8-5e0b-d4323d933340@mtneva.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 05/29/2018 08:26 AM, Brian Dunavant wrote:
> On Sun, May 27, 2018 at 6:04 PM, Stuart McGraw <smcg4191(at)mtneva(dot)com <mailto:smcg4191(at)mtneva(dot)com>> wrote:
> Is there some way to to test if a savepoint of a given name
> exists?  Or better yet, the number of stacked savepoints of
> that name?
>
> This is kind of backwards, but you can determine if a savepoint by a certain name exists by trying to release it.   You can do so without damaging the transaction by creating a savepoint immediately beforehand, but this will cause you to lose the state of the named savepoint.  Example below.
> [...snipped for brevity...]

Thanks. That's interesting, protecting a questionable
release with another savepoint. I wouldn't have thought
of that. But I'm not sure it helps my ultimate goal of
simplifying my application code or that it doesn't shift
the problem of not leaking savepoints to the test
savepoints.

In response to

Browse pgsql-general by date

  From Date Subject
Next Message nageswara Bandla 2018-05-29 22:57:31 Re: Pgagent is not reading pgpass file either in Windows or Linux.
Previous Message Stuart McGraw 2018-05-29 22:49:58 Re: existence of a savepoint?