projects
/
pgpool2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cda8a3d
)
Fix identical code used for different branches per Coverity.
author
Tatsuo Ishii
<ishii@sraoss.co.jp>
Thu, 12 Sep 2019 04:40:05 +0000
(13:40 +0900)
committer
Tatsuo Ishii
<ishii@sraoss.co.jp>
Thu, 12 Sep 2019 04:53:18 +0000
(13:53 +0900)
src/parser/outfuncs.c
patch
|
blob
|
blame
|
history
diff --git
a/src/parser/outfuncs.c
b/src/parser/outfuncs.c
index bc16a0190d961b0ecd094499747ff36ceb20f786..b875a5bbf718ccea4bb743578ef9da050b232931 100644
(file)
--- a/
src/parser/outfuncs.c
+++ b/
src/parser/outfuncs.c
@@
-4873,9
+4873,9
@@
_outCreatedbOptList(String * str, List *options)
string_append_char(str, "DEFAULT");
else if (IsA((Node *) v, String))
{
- string_append_char(str,
sconst ? "'" :
"'");
+ string_append_char(str, "'");
string_append_char(str, v->val.str);
- string_append_char(str,
sconst ? "'" :
"'");
+ string_append_char(str, "'");
}
else
{