diff options
Diffstat (limited to 'src/include/catalog/pg_am.h')
-rw-r--r-- | src/include/catalog/pg_am.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/include/catalog/pg_am.h b/src/include/catalog/pg_am.h index 63c03c4324a..bc73e88a1a0 100644 --- a/src/include/catalog/pg_am.h +++ b/src/include/catalog/pg_am.h @@ -47,6 +47,11 @@ CATALOG(pg_am,2601,AccessMethodRelationId) */ typedef FormData_pg_am *Form_pg_am; +DECLARE_UNIQUE_INDEX(pg_am_name_index, 2651, on pg_am using btree(amname name_ops)); +#define AmNameIndexId 2651 +DECLARE_UNIQUE_INDEX(pg_am_oid_index, 2652, on pg_am using btree(oid oid_ops)); +#define AmOidIndexId 2652 + #ifdef EXPOSE_TO_CLIENT_CODE /* |