From 964bddf1e87a42bbaaa989be0aabee94dbac9432 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Mon, 26 Feb 2018 11:54:00 -0500 Subject: [PATCH] Fix typo in internal error message --- src/pl/plpgsql/src/pl_exec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pl/plpgsql/src/pl_exec.c b/src/pl/plpgsql/src/pl_exec.c index eae51e316a..4ff87e0879 100644 --- a/src/pl/plpgsql/src/pl_exec.c +++ b/src/pl/plpgsql/src/pl_exec.c @@ -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 */ -- 2.40.0