提交 326e5833 authored 作者: Noel Grandin's avatar Noel Grandin

fix removal of LOB when rolling back

on table containing more than one LOB column
上级 02789407
...@@ -21,6 +21,8 @@ Change Log ...@@ -21,6 +21,8 @@ Change Log
<h2>Next Version (unreleased)</h2> <h2>Next Version (unreleased)</h2>
<ul> <ul>
<li>Fix removal of LOB when rolling back transaction on a table containing more than one LOB column.
</li>
<li>Issue #654: List ENUM type values in INFORMATION_SCHEMA.COLUMNS <li>Issue #654: List ENUM type values in INFORMATION_SCHEMA.COLUMNS
</li> </li>
<li>Issue #650: Simple nested SELECT causes error for table with TIMESTAMP WITH TIMEZONE column <li>Issue #650: Simple nested SELECT causes error for table with TIMESTAMP WITH TIMEZONE column
......
...@@ -1312,8 +1312,8 @@ public class Session extends SessionWithState { ...@@ -1312,8 +1312,8 @@ public class Session extends SessionWithState {
} }
if (removeLobMap == null) { if (removeLobMap == null) {
removeLobMap = New.hashMap(); removeLobMap = New.hashMap();
removeLobMap.put(v.toString(), v);
} }
removeLobMap.put(v.toString(), v);
} }
/** /**
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论