diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2021-06-28 08:36:44 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2021-06-28 08:36:44 +0200 |
commit | c31833779d5a4775d7220be4b9143bec66c9a9fd (patch) | |
tree | 2f7c8b67887cb09fdcb4b6cb4ed95cf9f0c65a71 /src/backend/tcop/fastpath.c | |
parent | ee3fdb8f3465b3a5937a7fe647b7b6584a600647 (diff) |
Message style improvements
Diffstat (limited to 'src/backend/tcop/fastpath.c')
-rw-r--r-- | src/backend/tcop/fastpath.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/tcop/fastpath.c b/src/backend/tcop/fastpath.c index 9fa8997cb30..6343dd269b4 100644 --- a/src/backend/tcop/fastpath.c +++ b/src/backend/tcop/fastpath.c @@ -145,7 +145,7 @@ fetch_fp_info(Oid func_id, struct fp_info *fip) if (pp->prokind != PROKIND_FUNCTION || pp->proretset) ereport(ERROR, (errcode(ERRCODE_FEATURE_NOT_SUPPORTED), - errmsg("cannot call function %s via fastpath interface", + errmsg("cannot call function \"%s\" via fastpath interface", NameStr(pp->proname)))); /* watch out for catalog entries with more than FUNC_MAX_ARGS args */ |