projects
/
users
/
bernd
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c18e62f
)
Fix misbehavior of func_error() on type names containing '%'.
author
Tom Lane
<
[email protected]
>
Wed, 23 Apr 2003 18:20:10 +0000
(18:20 +0000)
committer
Tom Lane
<
[email protected]
>
Wed, 23 Apr 2003 18:20:10 +0000
(18:20 +0000)
Will patch separately but equivalently in HEAD.
src/backend/parser/parse_func.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/parser/parse_func.c
b/src/backend/parser/parse_func.c
index 815f93ef49b59bf5f52b63eaab13f0e193a94178..7cc11508b29471c915fa8af9b112351315c0987f 100644
(file)
--- a/
src/backend/parser/parse_func.c
+++ b/
src/backend/parser/parse_func.c
@@
-1286,7
+1286,7
@@
func_error(const char *caller, List *funcname,
{
if (i)
appendStringInfo(&argbuf, ", ");
- appendStringInfo(&argbuf, format_type_be(argtypes[i]));
+ appendStringInfo(&argbuf,
"%s",
format_type_be(argtypes[i]));
}
if (caller == NULL)