PostgreSQL Source Code  git master
typecmds.h
Go to the documentation of this file.
1 /*-------------------------------------------------------------------------
2  *
3  * typecmds.h
4  * prototypes for typecmds.c.
5  *
6  *
7  * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * src/include/commands/typecmds.h
11  *
12  *-------------------------------------------------------------------------
13  */
14 #ifndef TYPECMDS_H
15 #define TYPECMDS_H
16 
17 #include "access/htup.h"
18 #include "catalog/dependency.h"
19 #include "parser/parse_node.h"
20 
21 
22 #define DEFAULT_TYPDELIM ','
23 
24 extern ObjectAddress DefineType(ParseState *pstate, List *names, List *parameters);
25 extern void RemoveTypeById(Oid typeOid);
30 extern ObjectAddress DefineCompositeType(RangeVar *typevar, List *coldeflist);
31 extern Oid AssignTypeArrayOid(void);
32 extern Oid AssignTypeMultirangeOid(void);
34 
35 extern ObjectAddress AlterDomainDefault(List *names, Node *defaultRaw);
36 extern ObjectAddress AlterDomainNotNull(List *names, bool notNull);
37 extern ObjectAddress AlterDomainAddConstraint(List *names, Node *newConstraint,
38  ObjectAddress *constrAddr);
39 extern ObjectAddress AlterDomainValidateConstraint(List *names, const char *constrName);
40 extern ObjectAddress AlterDomainDropConstraint(List *names, const char *constrName,
41  DropBehavior behavior, bool missing_ok);
42 
43 extern void checkDomainOwner(HeapTuple tup);
44 
46 
47 extern ObjectAddress AlterTypeOwner(List *names, Oid newOwnerId, ObjectType objecttype);
48 extern void AlterTypeOwner_oid(Oid typeOid, Oid newOwnerId, bool hasDependEntry);
49 extern void AlterTypeOwnerInternal(Oid typeOid, Oid newOwnerId);
50 
51 extern ObjectAddress AlterTypeNamespace(List *names, const char *newschema,
52  ObjectType objecttype, Oid *oldschema);
53 extern Oid AlterTypeNamespace_oid(Oid typeOid, Oid nspOid, ObjectAddresses *objsMoved);
54 extern Oid AlterTypeNamespaceInternal(Oid typeOid, Oid nspOid,
55  bool isImplicitArray,
56  bool errorOnTableType,
57  ObjectAddresses *objsMoved);
58 
60 
61 #endif /* TYPECMDS_H */
#define stmt
Definition: indent_codes.h:59
DropBehavior
Definition: parsenodes.h:2335
ObjectType
Definition: parsenodes.h:2262
unsigned int Oid
Definition: postgres_ext.h:31
Definition: pg_list.h:54
Definition: nodes.h:129
ObjectAddress AlterDomainNotNull(List *names, bool notNull)
Definition: typecmds.c:2705
ObjectAddress DefineDomain(CreateDomainStmt *stmt)
Definition: typecmds.c:697
Oid AssignTypeMultirangeOid(void)
Definition: typecmds.c:2443
ObjectAddress DefineType(ParseState *pstate, List *names, List *parameters)
Definition: typecmds.c:152
ObjectAddress DefineEnum(CreateEnumStmt *stmt)
Definition: typecmds.c:1147
ObjectAddress AlterTypeOwner(List *names, Oid newOwnerId, ObjectType objecttype)
Definition: typecmds.c:3824
ObjectAddress AlterDomainDropConstraint(List *names, const char *constrName, DropBehavior behavior, bool missing_ok)
Definition: typecmds.c:2791
void AlterTypeOwnerInternal(Oid typeOid, Oid newOwnerId)
Definition: typecmds.c:3989
ObjectAddress AlterEnum(AlterEnumStmt *stmt)
Definition: typecmds.c:1271
ObjectAddress AlterDomainAddConstraint(List *names, Node *newConstraint, ObjectAddress *constrAddr)
Definition: typecmds.c:2897
void RemoveTypeById(Oid typeOid)
Definition: typecmds.c:657
ObjectAddress AlterDomainValidateConstraint(List *names, const char *constrName)
Definition: typecmds.c:3037
ObjectAddress AlterDomainDefault(List *names, Node *defaultRaw)
Definition: typecmds.c:2576
Oid AlterTypeNamespaceInternal(Oid typeOid, Oid nspOid, bool isImplicitArray, bool errorOnTableType, ObjectAddresses *objsMoved)
Definition: typecmds.c:4132
ObjectAddress RenameType(RenameStmt *stmt)
Definition: typecmds.c:3743
Oid AssignTypeArrayOid(void)
Definition: typecmds.c:2410
Oid AlterTypeNamespace_oid(Oid typeOid, Oid nspOid, ObjectAddresses *objsMoved)
Definition: typecmds.c:4094
void checkDomainOwner(HeapTuple tup)
Definition: typecmds.c:3490
void AlterTypeOwner_oid(Oid typeOid, Oid newOwnerId, bool hasDependEntry)
Definition: typecmds.c:3949
ObjectAddress AlterTypeNamespace(List *names, const char *newschema, ObjectType objecttype, Oid *oldschema)
Definition: typecmds.c:4057
ObjectAddress DefineCompositeType(RangeVar *typevar, List *coldeflist)
Definition: typecmds.c:2518
Oid AssignTypeMultirangeArrayOid(void)
Definition: typecmds.c:2476
ObjectAddress AlterType(AlterTypeStmt *stmt)
Definition: typecmds.c:4277
ObjectAddress DefineRange(ParseState *pstate, CreateRangeStmt *stmt)
Definition: typecmds.c:1346