Skip to content

Commit 20ef8f7

Browse files
author
Antonin Houska
committed
Remove unused structure.
Missed in commit 53047de.
1 parent f6baa45 commit 20ef8f7

1 file changed

Lines changed: 0 additions & 25 deletions

File tree

pg_rewrite.c

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -84,31 +84,6 @@ static int index_cat_info_compare(const void *arg1, const void *arg2);
8484
/* The WAL segment being decoded. */
8585
XLogSegNo rewrite_current_segment = 0;
8686

87-
/*
88-
* Information on a single constraint, needed to compare constraints of the
89-
* source and the destination relations.
90-
*/
91-
typedef struct ConstraintInfo
92-
{
93-
char contype;
94-
bool convalidated;
95-
char *conbin;
96-
NameData conname;
97-
Bitmapset *attnos;
98-
99-
Oid confrelid;
100-
int numfks;
101-
AttrNumber conkey[INDEX_MAX_KEYS];
102-
AttrNumber confkey[INDEX_MAX_KEYS];
103-
Oid pf_eq_oprs[INDEX_MAX_KEYS];
104-
Oid pp_eq_oprs[INDEX_MAX_KEYS];
105-
Oid ff_eq_oprs[INDEX_MAX_KEYS];
106-
#if PG_VERSION_NUM >= 150000
107-
int num_fk_del_set_cols;
108-
AttrNumber fk_del_set_cols[INDEX_MAX_KEYS];
109-
#endif
110-
} ConstraintInfo;
111-
11287
static void worker_shmem_request(void);
11388
static void worker_shmem_startup(void);
11489
static void worker_shmem_shutdown(int code, Datum arg);

0 commit comments

Comments
 (0)