修复错误

This commit is contained in:
kenxx
2023-08-07 23:31:09 -04:00
parent 2b55050354
commit 3abc524cee

View File

@ -320,7 +320,7 @@ static bool equalPLpgsqlFunc(PLpgSQL_function* funcA, PLpgSQL_function* funcB)
/* equalPLpgEstate(funcA->cur_estate, funcB->cur_estate) */
for (int i = 0; i < funcA->fn_nargs; i++) {
if (funcA->fn_argvarnos[i] != funcB->fn_argvarnos[i]) {
break;
return false;
}
}
return true;