Re: BUG #5244: Attempting to rollback to a savepoint after receiving an error with state 55000 the process hangs

From: Robert Haas <robertmhaas(at)gmail(dot)com>
To: Philip Graham <philip(at)lightbox(dot)org>
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: BUG #5244: Attempting to rollback to a savepoint after receiving an error with state 55000 the process hangs
Date: 2009-12-15 16:58:49
Message-ID: 603c8f070912150858s385dc98aq27f7417b56d4af37@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

On Mon, Dec 14, 2009 at 11:15 PM, Philip Graham <philip(at)lightbox(dot)org> wrote:
>
> The following bug has been logged online:
>
> Bug reference:      5244
> Logged by:          Philip Graham
> Email address:      philip(at)lightbox(dot)org
> PostgreSQL version: 8.3.8
> Operating system:   Linux
> Description:        Attempting to rollback to a savepoint after receiving an
> error with state 55000 the process hangs
> Details:
>
> This may be a PHP so please excure me if it is.
>
> <?php
> $pdo = new PDO('pgsql:host=localhost;dbname=a_db', 'a_user', 'my_pass');
> $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
>
> echo 'Creating test objects'."\n";
> $pdo->query('CREATE SEQUENCE test_seq');
>
> echo 'Setup complete'."\n";
> $pdo->beginTransaction();
>
> try {
>    echo 'Setting savepoint'."\n";
>    $pdo->query('SAVEPOINT pre_id_fetch');
>    echo 'Fetching value'."\n";
>    $stmt = $pdo->query('SELECT currval(\'test_seq\');');
>    $curId = $stmt->fetchColumn();
>    echo 'Releasing savepoint'."\n";
>    $pdo->query('RELEASE SAVEPOINT pre_id_fetch');
> } catch (PDOException $e) {
>    echo 'Rolling back'."\n";
>    $pdo->query('ROLLBACK TO pre_id_fetch');
>    $curId = 0;
> }
>
> echo 'Cur Id: ',$curId,"\n";
>
>
> Running this code it hangs after echoing 'Rolling back', but only hangs
> every other execution (assuming the sequence was deleted first).

I can't reproduce this using psql. Could you try? I am guessing that
PHP is doing something funky, but I'm not really sure what. I do
notice that you don't seem to have an endTransaction() or similar to
match the beginTransaction() - could that be relevant?

...Robert

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Greg Stark 2009-12-15 17:07:15 Re: statement_timeout is not cancelling query
Previous Message Robert Haas 2009-12-15 16:16:43 Re: statement_timeout is not cancelling query