提交 05a73352 authored 作者: Thomas Mueller's avatar Thomas Mueller

Update expected memory formula (64 bit VMs need more memory)

上级 21a558cf
...@@ -760,7 +760,7 @@ public class ValueLob extends Value { ...@@ -760,7 +760,7 @@ public class ValueLob extends Value {
public int getMemory() { public int getMemory() {
if (small != null) { if (small != null) {
return small.length + 32; return small.length + 64;
} }
return 128; return 128;
} }
......
...@@ -334,7 +334,7 @@ public class ValueLobDb extends Value implements Value.ValueClob, Value.ValueBlo ...@@ -334,7 +334,7 @@ public class ValueLobDb extends Value implements Value.ValueClob, Value.ValueBlo
public int getMemory() { public int getMemory() {
if (small != null) { if (small != null) {
return small.length + 32; return small.length + 64;
} }
return 128; return 128;
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论