1 | /*------------------------------------------------------------------------- |
2 | * |
3 | * pg_amop_d.h |
4 | * Macro definitions for pg_amop |
5 | * |
6 | * Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group |
7 | * Portions Copyright (c) 1994, Regents of the University of California |
8 | * |
9 | * NOTES |
10 | * ****************************** |
11 | * *** DO NOT EDIT THIS FILE! *** |
12 | * ****************************** |
13 | * |
14 | * It has been GENERATED by src/backend/catalog/genbki.pl |
15 | * |
16 | *------------------------------------------------------------------------- |
17 | */ |
18 | #ifndef PG_AMOP_D_H |
19 | #define PG_AMOP_D_H |
20 | |
21 | #define AccessMethodOperatorRelationId 2602 |
22 | |
23 | #define Anum_pg_amop_oid 1 |
24 | #define Anum_pg_amop_amopfamily 2 |
25 | #define Anum_pg_amop_amoplefttype 3 |
26 | #define Anum_pg_amop_amoprighttype 4 |
27 | #define Anum_pg_amop_amopstrategy 5 |
28 | #define Anum_pg_amop_amoppurpose 6 |
29 | #define Anum_pg_amop_amopopr 7 |
30 | #define Anum_pg_amop_amopmethod 8 |
31 | #define Anum_pg_amop_amopsortfamily 9 |
32 | |
33 | #define Natts_pg_amop 9 |
34 | |
35 | |
36 | /* allowed values of amoppurpose: */ |
37 | #define AMOP_SEARCH 's' /* operator is for search */ |
38 | #define AMOP_ORDER 'o' /* operator is for ordering */ |
39 | |
40 | |
41 | #endif /* PG_AMOP_D_H */ |
42 | |