From: Tom Lane Date: Wed, 5 Sep 2018 18:29:58 +0000 (-0400) Subject: Remove no-longer-used variable. X-Git-Tag: REL_12_BETA1~1609 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=54b01b9293830d82d5b6c827771c683ff52ffb0b;p=postgresql Remove no-longer-used variable. Oversight in 2fbdf1b38. Per buildfarm. --- diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c index a1cb15ca30..e96512e051 100644 --- a/src/backend/commands/tablecmds.c +++ b/src/backend/commands/tablecmds.c @@ -14672,8 +14672,7 @@ ATExecDetachPartition(Relation rel, RangeVar *name) HeapTuple tuple, newtuple; Datum new_val[Natts_pg_class]; - bool isnull, - new_null[Natts_pg_class], + bool new_null[Natts_pg_class], new_repl[Natts_pg_class]; ObjectAddress address; Oid defaultPartOid;