mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-07 22:17:39 +08:00
21 lines
569 B
C
21 lines
569 B
C
/*-------------------------------------------------------------------------
|
|
* decode.h
|
|
* PostgreSQL WAL to logical transformation
|
|
*
|
|
* Portions Copyright (c) 2012-2018, 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
|