Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
proc
/
self
/
root
/
opt
/
postgresql-11.1-201812121535
/
include
/
server
/
replication
/
//proc/self/root/opt/postgresql-11.1-201812121535/include/server/replication/pgoutput.h
/*------------------------------------------------------------------------- * * pgoutput.h * Logical Replication output plugin * * Copyright (c) 2015-2018, PostgreSQL Global Development Group * * IDENTIFICATION * pgoutput.h * *------------------------------------------------------------------------- */ #ifndef PGOUTPUT_H #define PGOUTPUT_H #include "nodes/pg_list.h" typedef struct PGOutputData { MemoryContext context; /* private memory context for transient * allocations */ /* client info */ uint32 protocol_version; List *publication_names; List *publications; } PGOutputData; #endif /* PGOUTPUT_H */