提交 9afa3362 authored 作者: Thomas Mueller's avatar Thomas Mueller

--no commit message

--no commit message
上级 88f5caea
......@@ -654,7 +654,7 @@ public class ValueLob extends Value {
}
public String getTraceSQL() {
if (getPrecision() <= SysProperties.MAX_TRACE_DATA_LENGTH) {
if (small != null && getPrecision() <= SysProperties.MAX_TRACE_DATA_LENGTH) {
return getSQL();
}
StringBuffer buff = new StringBuffer();
......@@ -666,12 +666,9 @@ public class ValueLob extends Value {
buff.append(getPrecision());
buff.append(") AS BINARY");
}
if (small != null) {
buff.append(" /* ");
buff.append(fileName);
buff.append(" */");
}
buff.append(")");
buff.append(" /* ");
buff.append(fileName);
buff.append(" */)");
return buff.toString();
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论