Skip to content

Commit

Permalink
Don't check edb_partdef, edb_partition in v10+.
Browse files Browse the repository at this point in the history
They don't exist any more.

Thom Brown
  • Loading branch information
robertmhaas committed Jul 7, 2017
1 parent 9afad2d commit f36fbae
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions definitions.c
Original file line number Diff line number Diff line change
Expand Up @@ -611,19 +611,19 @@ struct pg_catalog_column edb_dir_column[] =
struct pg_catalog_column edb_partdef_column[] =
{
/* edb_partdef */
{"oid", NULL, 90100, 0, true, true, true},
{"pdefrel", NULL, 90100, 0, true, false, false, &check_class_oid},
{"oid", NULL, 90100, 90699, true, true, true},
{"pdefrel", NULL, 90100, 90699, true, false, false, &check_class_oid},
{NULL}
};

struct pg_catalog_column edb_partition_column[] =
{
/* edb_partition */
{"oid", NULL, 90100, 0, true, true, true},
{"partpdefid", NULL, 90100, 0, true, false, false, &check_edb_partdef},
{"partrelid", NULL, 90100, 0, true, false, false, &check_class_oid},
{"partparent", NULL, 90100, 0, true, false, false, &check_edb_partition_optional_oid},
{"partcons", NULL, 90100, 0, true, false, false, &check_constraint_oid},
{"oid", NULL, 90100, 90699, true, true, true},
{"partpdefid", NULL, 90100, 90699, true, false, false, &check_edb_partdef},
{"partrelid", NULL, 90100, 90699, true, false, false, &check_class_oid},
{"partparent", NULL, 90100, 90699, true, false, false, &check_edb_partition_optional_oid},
{"partcons", NULL, 90100, 90699, true, false, false, &check_constraint_oid},
{NULL}
};

Expand Down

0 comments on commit f36fbae

Please sign in to comment.