BUG #2507: Problem using two-phase commit

Поиск
Список
Период
Сортировка
От N. Ramirez
Тема BUG #2507: Problem using two-phase commit
Дата
Msg-id 200606301933.k5UJXZiD046835@wwwmaster.postgresql.org
обсуждение исходный текст
Ответы Re: BUG #2507: Problem using two-phase commit  (Alvaro Herrera <alvherre@commandprompt.com>)
Список pgsql-bugs
The following bug has been logged online:

Bug reference:      2507
Logged by:          N. Ramirez
Email address:      noramirez@speedy.com.ar
PostgreSQL version: 8.1.4
Operating system:   Linux Suse 9
Description:        Problem using two-phase commit
Details:

I do not have an operation as it must be when use the functions to do
2-phase commit

Example create table prueba (a int, b int);
begin;
PREPARE TRANSACTION 'aaaa';
insert into prueba values (1,2);
ROLLBACK PREPARED 'aaaa';  select * from prueba
a               b
-----------------------------
1               2
because?
it did not do rollback?
as it is used the method of 2-phase commit?
idem for use of dblink

В списке pgsql-bugs по дате отправления:

Предыдущее
От: Alvaro Herrera
Дата:
Сообщение: Re: use-after-free in psql
Следующее
От: "Paul Röttgerding"
Дата:
Сообщение: BUG #2498: Problem with ADO.RECORDSET.UPDATE