diff options
Diffstat (limited to 'src/include/commands/typecmds.h')
-rw-r--r-- | src/include/commands/typecmds.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/commands/typecmds.h b/src/include/commands/typecmds.h index 0c7e10d392d..bb4a7c32bc2 100644 --- a/src/include/commands/typecmds.h +++ b/src/include/commands/typecmds.h @@ -14,6 +14,7 @@ #ifndef TYPECMDS_H #define TYPECMDS_H +#include "access/htup.h" #include "nodes/parsenodes.h" @@ -35,6 +36,8 @@ extern void AlterDomainValidateConstraint(List *names, char *constrName); extern void AlterDomainDropConstraint(List *names, const char *constrName, DropBehavior behavior, bool missing_ok); +extern void checkDomainOwner(HeapTuple tup); + extern List *GetDomainConstraints(Oid typeOid); extern void RenameType(RenameStmt *stmt); |