Merge two conflicting pg_dist_object headers

pull/2980/head
Philip Dubé 2019-09-16 19:19:21 +00:00
parent 72dd439ca7
commit 964020097d
2 changed files with 3 additions and 30 deletions

View File

@ -49,12 +49,14 @@ typedef FormData_pg_dist_object *Form_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_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_argument_index 7
#define Anum_pg_dist_object_colocationid 8
#endif /* PG_DIST_OBJECT_H */

View File

@ -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 */