BUG #13844: Logical decoding bug with subxact + row locking

Поиск
Список
Период
Сортировка
От jarred@webriots.com
Тема BUG #13844: Logical decoding bug with subxact + row locking
Дата
Msg-id 20160105033249.1087.66040@wrigleys.postgresql.org
обсуждение исходный текст
Ответы Re: BUG #13844: Logical decoding bug with subxact + row locking  (Bruce Momjian <bruce@momjian.us>)
Re: BUG #13844: Logical decoding bug with subxact + row locking  (Andres Freund <andres@anarazel.de>)
Re: BUG #13844: Logical decoding bug with subxact + row locking  (Andres Freund <andres@anarazel.de>)
Список pgsql-bugs
The following bug has been logged on the website:

Bug reference:      13844
Logged by:          Jarred Ward
Email address:      jarred@webriots.com
PostgreSQL version: 9.4.5
Operating system:   Linux
Description:

This is a pretty serious logical decoding bug that bit us pretty hard
in production.

Run the following code:


----------------------------------------------------------------------------
    CREATE TABLE foo(a SERIAL PRIMARY KEY, b TEXT);

    SELECT pg_create_logical_replication_slot('regression_slot',
'test_decoding');

    INSERT INTO foo (b) VALUES ('john');

    BEGIN;
    SELECT * FROM foo WHERE b = 'john' FOR UPDATE;
    SAVEPOINT sp1;
    INSERT INTO foo (b) VALUES ('jane');
    ROLLBACK TO SAVEPOINT sp1;
    INSERT INTO foo (b) VALUES ('doe');
    END;

    SELECT data FROM pg_logical_slot_get_changes('regression_slot', NULL,
NULL);

----------------------------------------------------------------------------

The last select above should return the decoded WAL, but instead it
returns:


----------------------------------------------------------------------------
    ERROR:  subxact logged without previous toplevel record

----------------------------------------------------------------------------

And the process is disconnected with no way to recover the replication
slot without dropping and recreating.

If SELECT statement in the transaction is changed the following:


----------------------------------------------------------------------------
    SELECT * FROM foo WHERE b = 'john' FOR UPDATE;

----------------------------------------------------------------------------

to remove the row level locking the correct decoded change set is
returned.

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

Предыдущее
От: jonas.hagen3@gmail.com
Дата:
Сообщение: BUG #13842: deb-Package configuration hangs at password promt
Следующее
От: takami@orega.co.jp
Дата:
Сообщение: BUG #13843: Problem with output of an index definition by "pg_restore"