diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/catalog/catalog.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/catalog/catalog.h b/src/include/catalog/catalog.h index 0e8542d8222..a37ec6f5d7c 100644 --- a/src/include/catalog/catalog.h +++ b/src/include/catalog/catalog.h @@ -21,11 +21,13 @@ extern bool IsSystemRelation(Relation relation); extern bool IsToastRelation(Relation relation); extern bool IsCatalogRelation(Relation relation); +extern bool IsInplaceUpdateRelation(Relation relation); extern bool IsSystemClass(Oid relid, Form_pg_class reltuple); extern bool IsToastClass(Form_pg_class reltuple); extern bool IsCatalogRelationOid(Oid relid); +extern bool IsInplaceUpdateOid(Oid relid); extern bool IsCatalogNamespace(Oid namespaceId); extern bool IsToastNamespace(Oid namespaceId); |