mirror of https://github.com/citusdata/citus.git
Merge two conflicting pg_dist_object headers
parent
72dd439ca7
commit
964020097d
|
@ -49,12 +49,14 @@ typedef FormData_pg_dist_object *Form_pg_dist_object;
|
||||||
* compiler constants for pg_dist_object
|
* compiler constants for pg_dist_object
|
||||||
* ----------------
|
* ----------------
|
||||||
*/
|
*/
|
||||||
#define Natts_pg_dist_object 6
|
#define Natts_pg_dist_object 8
|
||||||
#define Anum_pg_dist_object_classid 1
|
#define Anum_pg_dist_object_classid 1
|
||||||
#define Anum_pg_dist_object_objid 2
|
#define Anum_pg_dist_object_objid 2
|
||||||
#define Anum_pg_dist_object_objsubid 3
|
#define Anum_pg_dist_object_objsubid 3
|
||||||
#define Anum_pg_dist_object_type 4
|
#define Anum_pg_dist_object_type 4
|
||||||
#define Anum_pg_dist_object_object_names 5
|
#define Anum_pg_dist_object_object_names 5
|
||||||
#define Anum_pg_dist_object_object_args 6
|
#define Anum_pg_dist_object_object_args 6
|
||||||
|
#define Anum_pg_dist_object_distribution_argument_index 7
|
||||||
|
#define Anum_pg_dist_object_colocationid 8
|
||||||
|
|
||||||
#endif /* PG_DIST_OBJECT_H */
|
#endif /* PG_DIST_OBJECT_H */
|
||||||
|
|
|
@ -1,29 +0,0 @@
|
||||||
/*-------------------------------------------------------------------------
|
|
||||||
*
|
|
||||||
* pg_dist_object.h
|
|
||||||
* definition of the relation that holds the object information on the
|
|
||||||
* cluster (pg_dist_object).
|
|
||||||
*
|
|
||||||
* Copyright (c) 2019, Citus Data, Inc.
|
|
||||||
*
|
|
||||||
*-------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef PG_DIST_OBJECT_H
|
|
||||||
#define PG_DIST_OBJECT_H
|
|
||||||
|
|
||||||
/* ----------------
|
|
||||||
* compiler constants for pg_dist_object
|
|
||||||
* ----------------
|
|
||||||
*/
|
|
||||||
#define Natts_pg_dist_object 8
|
|
||||||
#define Anum_pg_dist_object_classid 1
|
|
||||||
#define Anum_pg_dist_object_objid 2
|
|
||||||
#define Anum_pg_dist_object_objsubid 3
|
|
||||||
#define Anum_pg_dist_object_type 4
|
|
||||||
#define Anum_pg_dist_object_object_names 5
|
|
||||||
#define Anum_pg_dist_object_object_args 6
|
|
||||||
#define Anum_pg_dist_object_distribution_arg_index 7
|
|
||||||
#define Anum_pg_dist_object_colocation_id 8
|
|
||||||
|
|
||||||
#endif /* PG_DIST_OBJECT_H */
|
|
Loading…
Reference in New Issue