mirror of
https://github.com/postgres/postgres.git
synced 2025-08-24 09:27:52 +03:00
20 lines
515 B
C
20 lines
515 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* logicalworker.h
|
|
* Exports for logical replication workers.
|
|
*
|
|
* Portions Copyright (c) 2016-2019, PostgreSQL Global Development Group
|
|
*
|
|
* src/include/replication/logicalworker.h
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef LOGICALWORKER_H
|
|
#define LOGICALWORKER_H
|
|
|
|
extern void ApplyWorkerMain(Datum main_arg);
|
|
|
|
extern bool IsLogicalWorker(void);
|
|
|
|
#endif /* LOGICALWORKER_H */
|