mirror of
https://github.com/postgres/postgres.git
synced 2026-02-22 09:20:24 -05:00
This includes removing tabs after periods in C comments, which was applied to back branches, so this change should not effect backpatching.
19 lines
533 B
C
19 lines
533 B
C
/*-------------------------------------------------------------------------
|
|
* decode.h
|
|
* PostgreSQL WAL to logical transformation
|
|
*
|
|
* Portions Copyright (c) 2012-2014, PostgreSQL Global Development Group
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef DECODE_H
|
|
#define DECODE_H
|
|
|
|
#include "access/xlogreader.h"
|
|
#include "replication/reorderbuffer.h"
|
|
#include "replication/logical.h"
|
|
|
|
void LogicalDecodingProcessRecord(LogicalDecodingContext *ctx,
|
|
XLogRecord *record);
|
|
|
|
#endif
|