combocid.h 874 B

12345678910111213141516171819202122232425262728
  1. /*-------------------------------------------------------------------------
  2. *
  3. * combocid.h
  4. * Combo command ID support routines
  5. *
  6. *
  7. * Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group
  8. * Portions Copyright (c) 1994, Regents of the University of California
  9. *
  10. * src/include/utils/combocid.h
  11. *
  12. *-------------------------------------------------------------------------
  13. */
  14. #ifndef COMBOCID_H
  15. #define COMBOCID_H
  16. /*
  17. * HeapTupleHeaderGetCmin and HeapTupleHeaderGetCmax function prototypes
  18. * are in access/htup.h, because that's where the macro definitions that
  19. * those functions replaced used to be.
  20. */
  21. extern void AtEOXact_ComboCid(void);
  22. extern void RestoreComboCIDState(char *comboCIDstate);
  23. extern void SerializeComboCIDState(Size maxsize, char *start_address);
  24. extern Size EstimateComboCIDStateSpace(void);
  25. #endif /* COMBOCID_H */