提交 1f494333 authored 作者: Thomas Mueller's avatar Thomas Mueller

Avoid casting problems (if the length is >2 GB).

上级 0fb1169f
......@@ -673,7 +673,7 @@ public class LobStorageBackend implements LobStorageInterface {
if (length > Integer.MAX_VALUE) {
return Integer.MAX_VALUE;
}
return (int) length;
return MathUtils.convertLongToInt(length);
}
@Override
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论