1 /*-------------------------------------------------------------------------
4 * POSTGRES system attribute definitions.
7 * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * src/include/access/sysattr.h
12 *-------------------------------------------------------------------------
19 * Attribute numbers for the system-defined attributes
21 #define SelfItemPointerAttributeNumber (-1)
22 #define MinTransactionIdAttributeNumber (-2)
23 #define MinCommandIdAttributeNumber (-3)
24 #define MaxTransactionIdAttributeNumber (-4)
25 #define MaxCommandIdAttributeNumber (-5)
26 #define TableOidAttributeNumber (-6)
27 #define FirstLowInvalidHeapAttributeNumber (-7)
29 #endif /* SYSATTR_H */