From: Peter Eisentraut Date: Wed, 30 Aug 2023 14:20:44 +0000 (+0200) Subject: Fix possible compiler warning X-Git-Tag: REL_17_BETA1~1930 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fe39f433528c7a5648a4b94bf11773f9c51e28ac;p=thirdparty%2Fpostgresql.git Fix possible compiler warning related to 1fa9241bdd --- diff --git a/src/backend/commands/sequence.c b/src/backend/commands/sequence.c index 0b0003fcc83..47acdf51664 100644 --- a/src/backend/commands/sequence.c +++ b/src/backend/commands/sequence.c @@ -172,7 +172,7 @@ DefineSequence(ParseState *pstate, CreateSeqStmt *seq) stmt->tableElts = NIL; for (i = SEQ_COL_FIRSTCOL; i <= SEQ_COL_LASTCOL; i++) { - ColumnDef *coldef; + ColumnDef *coldef = NULL; switch (i) {