git.postgresql.org Git - postgresql.git/commit

git projects / postgresql.git / commit
? search:
summary | shortlog | log | commit | commitdiff | tree
(parent: ba61a04) | patch
Logical replication
2017年1月19日 17:00:00 +0000 (12:00 -0500)
2017年1月20日 14:04:49 +0000 (09:04 -0500)
commit 665d1fad99e7b11678b0d5fa24d2898424243cd6
Logical replication

- Add PUBLICATION catalogs and DDL
- Add SUBSCRIPTION catalog and DDL
- Define logical replication protocol and output plugin
- Add logical replication workers

From: Petr Jelinek <petr@2ndquadrant.com>
Reviewed-by: Steve Singer <steve@ssinger.info>
Reviewed-by: Andres Freund <andres@anarazel.de>
Reviewed-by: Erik Rijkers <er@xs4all.nl>
Reviewed-by: Peter Eisentraut <peter.eisentraut@2ndquadrant.com>
119 files changed:
doc/src/sgml/catalogs.sgml diff | blob | blame | history
doc/src/sgml/config.sgml diff | blob | blame | history
doc/src/sgml/filelist.sgml diff | blob | blame | history
doc/src/sgml/func.sgml diff | blob | blame | history
doc/src/sgml/logical-replication.sgml [new file with mode: 0644] blob
doc/src/sgml/monitoring.sgml diff | blob | blame | history
doc/src/sgml/postgres.sgml diff | blob | blame | history
doc/src/sgml/protocol.sgml diff | blob | blame | history
doc/src/sgml/ref/allfiles.sgml diff | blob | blame | history
doc/src/sgml/ref/alter_publication.sgml [new file with mode: 0644] blob
doc/src/sgml/ref/alter_subscription.sgml [new file with mode: 0644] blob
doc/src/sgml/ref/create_publication.sgml [new file with mode: 0644] blob
doc/src/sgml/ref/create_subscription.sgml [new file with mode: 0644] blob
doc/src/sgml/ref/drop_publication.sgml [new file with mode: 0644] blob
doc/src/sgml/ref/drop_subscription.sgml [new file with mode: 0644] blob
doc/src/sgml/ref/pg_dump.sgml diff | blob | blame | history
doc/src/sgml/ref/psql-ref.sgml diff | blob | blame | history
doc/src/sgml/reference.sgml diff | blob | blame | history
src/Makefile diff | blob | blame | history
src/backend/access/transam/xact.c diff | blob | blame | history
src/backend/catalog/Makefile diff | blob | blame | history
src/backend/catalog/aclchk.c diff | blob | blame | history
src/backend/catalog/catalog.c diff | blob | blame | history
src/backend/catalog/dependency.c diff | blob | blame | history
src/backend/catalog/objectaddress.c diff | blob | blame | history
src/backend/catalog/pg_publication.c [new file with mode: 0644] blob
src/backend/catalog/pg_shdepend.c diff | blob | blame | history
src/backend/catalog/pg_subscription.c [new file with mode: 0644] blob
src/backend/catalog/system_views.sql diff | blob | blame | history
src/backend/commands/Makefile diff | blob | blame | history
src/backend/commands/alter.c diff | blob | blame | history
src/backend/commands/dbcommands.c diff | blob | blame | history
src/backend/commands/define.c diff | blob | blame | history
src/backend/commands/dropcmds.c diff | blob | blame | history
src/backend/commands/event_trigger.c diff | blob | blame | history
src/backend/commands/publicationcmds.c [new file with mode: 0644] blob
src/backend/commands/subscriptioncmds.c [new file with mode: 0644] blob
src/backend/commands/tablecmds.c diff | blob | blame | history
src/backend/executor/Makefile diff | blob | blame | history
src/backend/executor/execMain.c diff | blob | blame | history
src/backend/executor/execReplication.c [new file with mode: 0644] blob
src/backend/nodes/copyfuncs.c diff | blob | blame | history
src/backend/nodes/equalfuncs.c diff | blob | blame | history
src/backend/parser/gram.y diff | blob | blame | history
src/backend/postmaster/bgworker.c diff | blob | blame | history
src/backend/postmaster/pgstat.c diff | blob | blame | history
src/backend/postmaster/postmaster.c diff | blob | blame | history
src/backend/replication/libpqwalreceiver/libpqwalreceiver.c diff | blob | blame | history
src/backend/replication/logical/Makefile diff | blob | blame | history
src/backend/replication/logical/launcher.c [new file with mode: 0644] blob
src/backend/replication/logical/proto.c [new file with mode: 0644] blob
src/backend/replication/logical/relation.c [new file with mode: 0644] blob
src/backend/replication/logical/worker.c [new file with mode: 0644] blob
src/backend/replication/pgoutput/Makefile [new file with mode: 0644] blob
src/backend/replication/pgoutput/pgoutput.c [new file with mode: 0644] blob
src/backend/replication/walreceiver.c diff | blob | blame | history
src/backend/storage/ipc/ipci.c diff | blob | blame | history
src/backend/storage/lmgr/lwlocknames.txt diff | blob | blame | history
src/backend/tcop/utility.c diff | blob | blame | history
src/backend/utils/cache/inval.c diff | blob | blame | history
src/backend/utils/cache/relcache.c diff | blob | blame | history
src/backend/utils/cache/syscache.c diff | blob | blame | history
src/backend/utils/misc/guc.c diff | blob | blame | history
src/backend/utils/misc/postgresql.conf.sample diff | blob | blame | history
src/bin/pg_dump/common.c diff | blob | blame | history
src/bin/pg_dump/pg_backup.h diff | blob | blame | history
src/bin/pg_dump/pg_backup_archiver.c diff | blob | blame | history
src/bin/pg_dump/pg_dump.c diff | blob | blame | history
src/bin/pg_dump/pg_dump.h diff | blob | blame | history
src/bin/pg_dump/pg_dump_sort.c diff | blob | blame | history
src/bin/pg_dump/pg_restore.c diff | blob | blame | history
src/bin/pg_dump/t/002_pg_dump.pl diff | blob | blame | history
src/bin/psql/command.c diff | blob | blame | history
src/bin/psql/describe.c diff | blob | blame | history
src/bin/psql/describe.h diff | blob | blame | history
src/bin/psql/help.c diff | blob | blame | history
src/bin/psql/tab-complete.c diff | blob | blame | history
src/include/catalog/dependency.h diff | blob | blame | history
src/include/catalog/indexing.h diff | blob | blame | history
src/include/catalog/pg_proc.h diff | blob | blame | history
src/include/catalog/pg_publication.h [new file with mode: 0644] blob
src/include/catalog/pg_publication_rel.h [new file with mode: 0644] blob
src/include/catalog/pg_subscription.h [new file with mode: 0644] blob
src/include/commands/defrem.h diff | blob | blame | history
src/include/commands/publicationcmds.h [new file with mode: 0644] blob
src/include/commands/subscriptioncmds.h [new file with mode: 0644] blob
src/include/executor/executor.h diff | blob | blame | history
src/include/nodes/nodes.h diff | blob | blame | history
src/include/nodes/parsenodes.h diff | blob | blame | history
src/include/parser/kwlist.h diff | blob | blame | history
src/include/pgstat.h diff | blob | blame | history
src/include/replication/logicallauncher.h [new file with mode: 0644] blob
src/include/replication/logicalproto.h [new file with mode: 0644] blob
src/include/replication/logicalrelation.h [new file with mode: 0644] blob
src/include/replication/logicalworker.h [new file with mode: 0644] blob
src/include/replication/pgoutput.h [new file with mode: 0644] blob
src/include/replication/walreceiver.h diff | blob | blame | history
src/include/replication/worker_internal.h [new file with mode: 0644] blob
src/include/storage/sinval.h diff | blob | blame | history
src/include/utils/acl.h diff | blob | blame | history
src/include/utils/inval.h diff | blob | blame | history
src/include/utils/rel.h diff | blob | blame | history
src/include/utils/relcache.h diff | blob | blame | history
src/include/utils/syscache.h diff | blob | blame | history
src/test/Makefile diff | blob | blame | history
src/test/perl/PostgresNode.pm diff | blob | blame | history
src/test/regress/expected/publication.out [new file with mode: 0644] blob
src/test/regress/expected/rules.out diff | blob | blame | history
src/test/regress/expected/sanity_check.out diff | blob | blame | history
src/test/regress/expected/subscription.out [new file with mode: 0644] blob
src/test/regress/parallel_schedule diff | blob | blame | history
src/test/regress/serial_schedule diff | blob | blame | history
src/test/regress/sql/publication.sql [new file with mode: 0644] blob
src/test/regress/sql/subscription.sql [new file with mode: 0644] blob
src/test/subscription/.gitignore [new file with mode: 0644] blob
src/test/subscription/Makefile [new file with mode: 0644] blob
src/test/subscription/README [new file with mode: 0644] blob
src/test/subscription/t/001_rep_changes.pl [new file with mode: 0644] blob
src/test/subscription/t/002_types.pl [new file with mode: 0644] blob
This is the main PostgreSQL git repository.
RSS Atom

AltStyle によって変換されたページ (->オリジナル) /