mirror of
https://github.com/postgres/postgres.git
synced 2026-03-05 23:04:24 -05:00
Similar to commits14aec03502,7e735035f2anddddf4cdc33, this commit makes the order of header file inclusion consistent in more places. Author: Vignesh C Reviewed-by: Amit Kapila Discussion: https://postgr.es/m/CALDaNm2Sznv8RR6Ex-iJO6xAdsxgWhCoETkaYX=+9DW3q0QCfA@mail.gmail.com
20 lines
573 B
C
20 lines
573 B
C
/*-------------------------------------------------------------------------
|
|
* decode.h
|
|
* PostgreSQL WAL to logical transformation
|
|
*
|
|
* Portions Copyright (c) 2012-2019, PostgreSQL Global Development Group
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef DECODE_H
|
|
#define DECODE_H
|
|
|
|
#include "access/xlogreader.h"
|
|
#include "access/xlogrecord.h"
|
|
#include "replication/logical.h"
|
|
#include "replication/reorderbuffer.h"
|
|
|
|
void LogicalDecodingProcessRecord(LogicalDecodingContext *ctx,
|
|
XLogReaderState *record);
|
|
|
|
#endif
|