1 /*-------------------------------------------------------------------------
2  * decode.h
3  *	   PostgreSQL WAL to logical transformation
4  *
5  * Portions Copyright (c) 2012-2020, PostgreSQL Global Development Group
6  *
7  *-------------------------------------------------------------------------
8  */
9 #ifndef DECODE_H
10 #define DECODE_H
11 
12 #include "access/xlogreader.h"
13 #include "access/xlogrecord.h"
14 #include "replication/logical.h"
15 #include "replication/reorderbuffer.h"
16 
17 void		LogicalDecodingProcessRecord(LogicalDecodingContext *ctx,
18 										 XLogReaderState *record);
19 
20 #endif
21