greenplumn pgoutput 源码

  • 2022-08-18
  • 浏览 (304)

greenplumn pgoutput 代码

文件路径:/src/include/replication/pgoutput.h

/*-------------------------------------------------------------------------
 *
 * pgoutput.h
 *		Logical Replication output plugin
 *
 * Copyright (c) 2015-2019, 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 */

相关信息

greenplumn 源码目录

相关文章

greenplumn basebackup 源码

greenplumn decode 源码

greenplumn gp_replication 源码

greenplumn logical 源码

greenplumn logicalfuncs 源码

greenplumn logicallauncher 源码

greenplumn logicalproto 源码

greenplumn logicalrelation 源码

greenplumn logicalworker 源码

greenplumn message 源码

0  赞