File: logicalworker.h

package info (click to toggle)
ruby-pg-query 2.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 15,640 kB
  • sloc: ansic: 144,813; ruby: 825; makefile: 4
file content (19 lines) | stat: -rw-r--r-- 515 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*-------------------------------------------------------------------------
 *
 * logicalworker.h
 *	  Exports for logical replication workers.
 *
 * Portions Copyright (c) 2016-2020, 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 */