gooderp18绿色标准版
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

31 líneas
653B

  1. /*-------------------------------------------------------------------------
  2. *
  3. * pgoutput.h
  4. * Logical Replication output plugin
  5. *
  6. * Copyright (c) 2015-2019, PostgreSQL Global Development Group
  7. *
  8. * IDENTIFICATION
  9. * pgoutput.h
  10. *
  11. *-------------------------------------------------------------------------
  12. */
  13. #ifndef PGOUTPUT_H
  14. #define PGOUTPUT_H
  15. #include "nodes/pg_list.h"
  16. typedef struct PGOutputData
  17. {
  18. MemoryContext context; /* private memory context for transient
  19. * allocations */
  20. /* client info */
  21. uint32 protocol_version;
  22. List *publication_names;
  23. List *publications;
  24. } PGOutputData;
  25. #endif /* PGOUTPUT_H */
上海开阖软件有限公司 沪ICP备12045867号-1