提交 f26792c2 authored 作者: noelgrandin's avatar noelgrandin

there is no point in calling convertTo(Value.STRING) here, since we're just…

there is no point in calling convertTo(Value.STRING) here, since we're just going to call getString() on the result
上级 5c73a65c
......@@ -323,7 +323,7 @@ public class Aggregate extends Expression {
if (val.getType() == Value.ARRAY) {
s = ((ValueArray) val).getList()[0].getString();
} else {
s = val.convertTo(Value.STRING).getString();
s = val.getString();
}
if (s == null) {
continue;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论