BUG #5244: Attempting to rollback to a savepoint after receiving an error with state 55000 the process hangs - Mailing list pgsql-bugs

From Philip Graham
Subject BUG #5244: Attempting to rollback to a savepoint after receiving an error with state 55000 the process hangs
Date
Msg-id 200912150415.nBF4FjKx045437@wwwmaster.postgresql.org
Whole thread Raw
Responses Re: BUG #5244: Attempting to rollback to a savepoint after receiving an error with state 55000 the process hangs  (Robert Haas <robertmhaas@gmail.com>)
Re: BUG #5244: Attempting to rollback to a savepoint after receiving an error with state 55000 the process hangs  (Mark Kirkwood <mark.kirkwood@catalyst.net.nz>)
List pgsql-bugs
The following bug has been logged online:

Bug reference:      5244
Logged by:          Philip Graham
Email address:      philip@lightbox.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).

Thanks for any help,
Philip

pgsql-bugs by date:

Previous
From: Craig Ringer
Date:
Subject: Re: statement_timeout is not cancelling query
Next
From: Andrew Gierth
Date:
Subject: Re: BUG #5240: Stable Functions that return a table type with a dropped column fail