提交 f9fad989 authored 作者: Noel Grandin's avatar Noel Grandin

revert this part of the fix, causes trouble

上级 58c84b0e
......@@ -1704,15 +1704,13 @@ public class Session extends SessionWithState implements TransactionStore.Rollba
if (v.getType() != Value.CLOB && v.getType() != Value.BLOB) {
return;
}
if (v.getTableId() == LobStorageFrontend.TABLE_RESULT) {
if (v.getTableId() == LobStorageFrontend.TABLE_RESULT
|| v.getTableId() == LobStorageFrontend.TABLE_TEMP) {
if (temporaryResultLobs == null) {
temporaryResultLobs = new LinkedList<>();
}
temporaryResultLobs.add(new TimeoutValue(v));
} else {
// Things with tableId == LobStorageFrontend.TABLE_TEMP
// end up here because we don't need to keep them alive to cater
// for dodgy clients.
if (temporaryLobs == null) {
temporaryLobs = new ArrayList<>();
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论