提交 bca558f8 authored 作者: Thomas Mueller's avatar Thomas Mueller

Improved exception message.

上级 c0337edd
...@@ -298,7 +298,8 @@ public class Column { ...@@ -298,7 +298,8 @@ public class Column {
if (s.length() > 127) { if (s.length() > 127) {
s = s.substring(0, 128) + "..."; s = s.substring(0, 128) + "...";
} }
throw Message.getSQLException(ErrorCode.VALUE_TOO_LONG_2, new String[]{name, s}); throw Message.getSQLException(ErrorCode.VALUE_TOO_LONG_2,
new String[] { getCreateSQL(), s + " (" + value.getPrecision() + ")" });
} }
} }
updateSequenceIfRequired(session, value); updateSequenceIfRequired(session, value);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论