mirror of
https://github.com/postgres/postgres.git
synced 2026-04-21 22:28:15 -04:00
Fix typo in internal error message
This commit is contained in:
parent
5770172cb0
commit
964bddf1e8
1 changed files with 1 additions and 1 deletions
|
|
@ -1999,7 +1999,7 @@ exec_stmt(PLpgSQL_execstate *estate, PLpgSQL_stmt *stmt)
|
|||
|
||||
default:
|
||||
estate->err_stmt = save_estmt;
|
||||
elog(ERROR, "unrecognized cmdtype: %d", stmt->cmd_type);
|
||||
elog(ERROR, "unrecognized cmd_type: %d", stmt->cmd_type);
|
||||
}
|
||||
|
||||
/* Let the plugin know that we have finished executing this statement */
|
||||
|
|
|
|||
Loading…
Reference in a new issue