projects
/
pgpool2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
55cf2ad
)
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:40:05 +0000
(13:40 +0900)
src/parser/outfuncs.c
patch
|
blob
|
blame
|
history
diff --git
a/src/parser/outfuncs.c
b/src/parser/outfuncs.c
index b02ffbaca02f18e6dce7f4d67774ba7abdaab07b..8df29cb36a9e1d31d3ca88aef4b614137dfffba8 100644
(file)
--- a/
src/parser/outfuncs.c
+++ b/
src/parser/outfuncs.c
@@
-4906,9
+4906,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
{