Fix possible compiler warning

related to 1fa9241bdd
This commit is contained in:
Peter Eisentraut 2023-08-30 16:20:44 +02:00
parent 7ef5f5fb32
commit fe39f43352
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{