summaryrefslogtreecommitdiff
path: root/src/include/catalog/objectaddress.h
blob: ffaf4ea25a132a027baa250937085a69790c2779 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*-------------------------------------------------------------------------
 *
 * objectaddress.h
 *	  functions for working with object addresses
 *
 * Portions Copyright (c) 1996-2013, PostgreSQL Global Development Group
 * Portions Copyright (c) 1994, Regents of the University of California
 *
 * src/include/catalog/objectaddress.h
 *
 *-------------------------------------------------------------------------
 */
#ifndef OBJECTADDRESS_H
#define OBJECTADDRESS_H

#include "nodes/pg_list.h"
#include "storage/lock.h"
#include "utils/acl.h"
#include "utils/relcache.h"

/*
 * An ObjectAddress represents a database object of any type.
 */
typedef struct ObjectAddress
{
	Oid			classId;		/* Class Id from pg_class */
	Oid			objectId;		/* OID of the object */
	int32		objectSubId;	/* Subitem within object (eg column), or 0 */
} ObjectAddress;

extern ObjectAddress get_object_address(ObjectType objtype, List *objname,
				   List *objargs, Relation *relp,
				   LOCKMODE lockmode, bool missing_ok);

extern void check_object_ownership(Oid roleid,
					   ObjectType objtype, ObjectAddress address,
					   List *objname, List *objargs, Relation relation);

extern Oid	get_object_namespace(const ObjectAddress *address);

extern Oid				get_object_oid_index(Oid class_id);
extern int				get_object_catcache_oid(Oid class_id);
extern int				get_object_catcache_name(Oid class_id);
extern AttrNumber		get_object_attnum_name(Oid class_id);
extern AttrNumber		get_object_attnum_namespace(Oid class_id);
extern AttrNumber		get_object_attnum_owner(Oid class_id);
extern AttrNumber		get_object_attnum_acl(Oid class_id);
extern AclObjectKind	get_object_aclkind(Oid class_id);

#endif   /* PARSE_OBJECT_H */