summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2018-02-26 11:54:00 -0500
committerPeter Eisentraut <peter_e@gmx.net>2018-02-26 11:54:00 -0500
commit964bddf1e87a42bbaaa989be0aabee94dbac9432 (patch)
tree429cedd4ebb89a97e3e5cfb5c2d98328bf140be4 /src
parent5770172cb0c9df9e6ce27c507b449557e5b45124 (diff)
Fix typo in internal error message
Diffstat (limited to 'src')
-rw-r--r--src/pl/plpgsql/src/pl_exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pl/plpgsql/src/pl_exec.c b/src/pl/plpgsql/src/pl_exec.c
index eae51e316a9..4ff87e08799 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 */