Increment command counter after altering the sequence type

pull/5415/head
Burak Velioglu 2021-12-02 00:04:21 +03:00
parent ed8e32de5e
commit a8b1ee87f7
No known key found for this signature in database
GPG Key ID: F6827E620F6549C6
1 changed files with 1 additions and 0 deletions

View File

@ -668,6 +668,7 @@ AlterSequenceType(Oid seqOid, Oid typeOid)
SetDefElemArg(alterSequenceStatement, "as", asTypeNode);
ParseState *pstate = make_parsestate(NULL);
AlterSequence(pstate, alterSequenceStatement);
CommandCounterIncrement();
}
}