1 /*-------------------------------------------------------------------------
2  *
3  * pg_dist_local_group.h
4  *	  definition of the relation that holds the local group id (pg_dist_local_group).
5  *
6  * Copyright (c) Citus Data, Inc.
7  *
8  *-------------------------------------------------------------------------
9  */
10 
11 #ifndef PG_DIST_LOCAL_GROUP_H
12 #define PG_DIST_LOCAL_GROUP_H
13 
14 /* ----------------
15  *		pg_dist_local_group definition.
16  * ----------------
17  */
18 typedef struct FormData_pg_dist_local_group
19 {
20 	int groupid;
21 } FormData_pg_dist_local_group;
22 
23 /* ----------------
24  *      FormData_pg_dist_local_group corresponds to a pointer to a tuple with
25  *      the format of pg_dist_local_group relation.
26  * ----------------
27  */
28 typedef FormData_pg_dist_local_group *Form_pg_dist_local_group;
29 
30 /* ----------------
31  *      compiler constants for pg_dist_local_group
32  * ----------------
33  */
34 #define Natts_pg_dist_local_group 1
35 #define Anum_pg_dist_local_groupid 1
36 
37 #endif /* PG_DIST_LOCAL_GROUP_H */
38