Re: [COMMITTERS] pgsql: Add support for temporary replication slots

From: Fujii Masao <masao(dot)fujii(at)gmail(dot)com>
To: Peter Eisentraut <peter_e(at)gmx(dot)net>
Cc: PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: [COMMITTERS] pgsql: Add support for temporary replication slots
Date: 2016-12-12 14:21:55
Message-ID: CAHGQGwGLH7LoBxQZhfnkJ6uRGiBGJGNCu4RM-rOeeBfpvMomYg@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers pgsql-hackers

On Mon, Dec 12, 2016 at 11:16 PM, Peter Eisentraut <peter_e(at)gmx(dot)net> wrote:
> Add support for temporary replication slots
>
> This allows creating temporary replication slots that are removed
> automatically at the end of the session or on error.
>
> From: Petr Jelinek <petr(dot)jelinek(at)2ndquadrant(dot)com>
>
> Branch
> ------
> master
>
> Details
> -------
> http://git.postgresql.org/pg/commitdiff/a924c327e2793d2025b19e18de7917110dc8afd8
>
> Modified Files
> --------------
> contrib/test_decoding/Makefile | 2 +-
> contrib/test_decoding/expected/ddl.out | 4 +-
> contrib/test_decoding/expected/slot.out | 58 +++++++++++++++++++++++++++
> contrib/test_decoding/sql/slot.sql | 20 ++++++++++
> doc/src/sgml/func.sgml | 16 ++++++--
> doc/src/sgml/protocol.sgml | 13 ++++++-
> src/backend/catalog/system_views.sql | 11 ++++++
> src/backend/replication/repl_gram.y | 22 +++++++----
> src/backend/replication/repl_scanner.l | 1 +
> src/backend/replication/slot.c | 69 ++++++++++++++++++++++++++-------
> src/backend/replication/slotfuncs.c | 24 ++++++++----
> src/backend/replication/walsender.c | 28 +++++++------
> src/backend/storage/lmgr/proc.c | 3 ++
> src/backend/tcop/postgres.c | 3 ++
> src/include/catalog/pg_proc.h | 6 +--
> src/include/nodes/replnodes.h | 1 +
> src/include/replication/slot.h | 4 +-
> src/test/regress/expected/rules.out | 3 +-
> 18 files changed, 237 insertions(+), 51 deletions(-)

Doesn't this need catversion bump?

Regards,

--
Fujii Masao

In response to

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2016-12-12 15:43:00 Re: pgsql: Add support for temporary replication slots
Previous Message Peter Eisentraut 2016-12-12 14:16:34 pgsql: Add support for temporary replication slots

Browse pgsql-hackers by date

  From Date Subject
Next Message Merlin Moncure 2016-12-12 14:22:23 Re: jsonb problematic operators
Previous Message Peter Eisentraut 2016-12-12 14:18:48 Re: Logical Replication WIP