decode.h 569 B

1234567891011121314151617181920
  1. /*-------------------------------------------------------------------------
  2. * decode.h
  3. * PostgreSQL WAL to logical transformation
  4. *
  5. * Portions Copyright (c) 2012-2016, PostgreSQL Global Development Group
  6. *
  7. *-------------------------------------------------------------------------
  8. */
  9. #ifndef DECODE_H
  10. #define DECODE_H
  11. #include "access/xlogreader.h"
  12. #include "access/xlogrecord.h"
  13. #include "replication/reorderbuffer.h"
  14. #include "replication/logical.h"
  15. void LogicalDecodingProcessRecord(LogicalDecodingContext *ctx,
  16. XLogReaderState *record);
  17. #endif