From e3aa802e6f843fc8df793d2dccdafecc32fe2cfc Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Sun, 14 Jan 2024 07:29:45 +0100 Subject: [PATCH] Remove useless Assert It's already included in the subsequent intVal() call. Fixup for 4f622503d6. --- src/backend/commands/tablecmds.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c index 5496f12682..fdcd09bc5e 100644 --- a/src/backend/commands/tablecmds.c +++ b/src/backend/commands/tablecmds.c @@ -8565,7 +8565,6 @@ ATExecSetStatistics(Relation rel, const char *colName, int16 colNum, Node *newVa if (newValue) { - Assert(IsA(newValue, Integer)); newtarget = intVal(newValue); } else