aboutsummaryrefslogtreecommitdiff
path: root/src/include/replication/decode.h
blob: 0561abfd73434025ad420e94ea1d4a8f671c4452 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*-------------------------------------------------------------------------
 * decode.h
 *	   PostgreSQL WAL to logical transformation
 *
 * Portions Copyright (c) 2012-2016, PostgreSQL Global Development Group
 *
 *-------------------------------------------------------------------------
 */
#ifndef DECODE_H
#define DECODE_H

#include "access/xlogreader.h"
#include "access/xlogrecord.h"
#include "replication/reorderbuffer.h"
#include "replication/logical.h"

void LogicalDecodingProcessRecord(LogicalDecodingContext *ctx,
							 XLogReaderState *record);

#endif