mirror of
https://github.com/postgres/postgres.git
synced 2025-08-24 09:27:52 +03:00
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>
This commit is contained in:
17
src/include/replication/logicalworker.h
Normal file
17
src/include/replication/logicalworker.h
Normal file
@@ -0,0 +1,17 @@
|
||||
/*-------------------------------------------------------------------------
|
||||
*
|
||||
* logicalworker.h
|
||||
* Exports for logical replication workers.
|
||||
*
|
||||
* Portions Copyright (c) 2010-2016, PostgreSQL Global Development Group
|
||||
*
|
||||
* src/include/replication/logicalworker.h
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
#ifndef LOGICALWORKER_H
|
||||
#define LOGICALWORKER_H
|
||||
|
||||
extern void ApplyWorkerMain(Datum main_arg);
|
||||
|
||||
#endif /* LOGICALWORKER_H */
|
Reference in New Issue
Block a user