]> granicus.if.org Git - postgresql/blob - src/include/replication/decode.h
d9e30776af0b490f533879767d0352ded584df48
[postgresql] / src / include / replication / decode.h
1 /*-------------------------------------------------------------------------
2  * decode.h
3  *         PostgreSQL WAL to logical transformation
4  *
5  * Portions Copyright (c) 2012-2014, PostgreSQL Global Development Group
6  *
7  *-------------------------------------------------------------------------
8  */
9 #ifndef DECODE_H
10 #define DECODE_H
11
12 #include "access/xlogreader.h"
13 #include "replication/reorderbuffer.h"
14 #include "replication/logical.h"
15
16 void LogicalDecodingProcessRecord(LogicalDecodingContext *ctx,
17                                                          XLogRecord *record);
18
19 #endif