Fix variable declaration style in MakeNextValExprForIdentity function

m3hm3t/issue_7887
Mehmet Yilmaz 2025-03-05 10:16:35 +00:00
parent b78a344005
commit ec3c899e17
1 changed files with 1 additions and 2 deletions

View File

@ -1237,7 +1237,6 @@ ReorderInsertSelectTargetLists(Query *originalQuery, RangeTblEntry *insertRte,
Expr *
MakeNextValExprForIdentity(Oid seq_relid)
{
List *func_args;
Oid nextval_oid;
Const *seq_const = makeConst(
@ -1250,7 +1249,7 @@ MakeNextValExprForIdentity(Oid seq_relid)
true /* pass by value */
);
func_args = list_make1(seq_const);
List *func_args = list_make1(seq_const);
nextval_oid = LookupFuncName(
list_make1(makeString("nextval")),
1,