Harmonize parameter names in ecpg code.
[pgsql.git] / src / include / access / sysattr.h
blobc0b1d5ab7a9b0c8b3a50c00514e77274a213741e
1 /*-------------------------------------------------------------------------
3 * sysattr.h
4 * POSTGRES system attribute definitions.
7 * Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * src/include/access/sysattr.h
12 *-------------------------------------------------------------------------
14 #ifndef SYSATTR_H
15 #define SYSATTR_H
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 */