sysattr.h 853 B

1234567891011121314151617181920212223242526272829
  1. /*-------------------------------------------------------------------------
  2. *
  3. * sysattr.h
  4. * POSTGRES system attribute definitions.
  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/access/sysattr.h
  11. *
  12. *-------------------------------------------------------------------------
  13. */
  14. #ifndef SYSATTR_H
  15. #define SYSATTR_H
  16. /*
  17. * Attribute numbers for the system-defined attributes
  18. */
  19. #define SelfItemPointerAttributeNumber (-1)
  20. #define MinTransactionIdAttributeNumber (-2)
  21. #define MinCommandIdAttributeNumber (-3)
  22. #define MaxTransactionIdAttributeNumber (-4)
  23. #define MaxCommandIdAttributeNumber (-5)
  24. #define TableOidAttributeNumber (-6)
  25. #define FirstLowInvalidHeapAttributeNumber (-7)
  26. #endif /* SYSATTR_H */