Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
c28b5ca2
提交
c28b5ca2
authored
11 年前
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
CLOB and BLOB data was not immediately removed after a rollback.
上级
84472cbd
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
13 行增加
和
8 行删除
+13
-8
changelog.html
h2/src/docsrc/html/changelog.html
+2
-1
Session.java
h2/src/main/org/h2/engine/Session.java
+11
-7
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
c28b5ca2
...
@@ -18,7 +18,8 @@ Change Log
...
@@ -18,7 +18,8 @@ Change Log
<h1>
Change Log
</h1>
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
There is a new Aggregate API that supports the internal H2 data types
<ul><li>
CLOB and BLOB data was not immediately removed after a rollback.
</li><li>
There is a new Aggregate API that supports the internal H2 data types
(GEOMETRY for example). Thanks a lot to Nicolas Fortin for the patch!
(GEOMETRY for example). Thanks a lot to Nicolas Fortin for the patch!
</li><li>
Referential integrity constraints sometimes used the wrong index,
</li><li>
Referential integrity constraints sometimes used the wrong index,
such that updating a row in the referenced table incorrectly failed with
such that updating a row in the referenced table incorrectly failed with
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/engine/Session.java
浏览文件 @
c28b5ca2
...
@@ -522,6 +522,16 @@ public class Session extends SessionWithState {
...
@@ -522,6 +522,16 @@ public class Session extends SessionWithState {
autoCommitAtTransactionEnd
=
false
;
autoCommitAtTransactionEnd
=
false
;
}
}
}
}
endTransaction
();
}
private
void
checkCommitRollback
()
{
if
(
commitOrRollbackDisabled
&&
locks
.
size
()
>
0
)
{
throw
DbException
.
get
(
ErrorCode
.
COMMIT_ROLLBACK_NOT_ALLOWED
);
}
}
private
void
endTransaction
()
{
if
(
unlinkLobMap
!=
null
&&
unlinkLobMap
.
size
()
>
0
)
{
if
(
unlinkLobMap
!=
null
&&
unlinkLobMap
.
size
()
>
0
)
{
// need to flush the transaction log, because we can't unlink lobs if the
// need to flush the transaction log, because we can't unlink lobs if the
// commit record is not written
// commit record is not written
...
@@ -535,12 +545,6 @@ public class Session extends SessionWithState {
...
@@ -535,12 +545,6 @@ public class Session extends SessionWithState {
unlockAll
();
unlockAll
();
}
}
private
void
checkCommitRollback
()
{
if
(
commitOrRollbackDisabled
&&
locks
.
size
()
>
0
)
{
throw
DbException
.
get
(
ErrorCode
.
COMMIT_ROLLBACK_NOT_ALLOWED
);
}
}
/**
/**
* Fully roll back the current transaction.
* Fully roll back the current transaction.
*/
*/
...
@@ -564,11 +568,11 @@ public class Session extends SessionWithState {
...
@@ -564,11 +568,11 @@ public class Session extends SessionWithState {
database
.
commit
(
this
);
database
.
commit
(
this
);
}
}
cleanTempTables
(
false
);
cleanTempTables
(
false
);
unlockAll
();
if
(
autoCommitAtTransactionEnd
)
{
if
(
autoCommitAtTransactionEnd
)
{
autoCommit
=
true
;
autoCommit
=
true
;
autoCommitAtTransactionEnd
=
false
;
autoCommitAtTransactionEnd
=
false
;
}
}
endTransaction
();
}
}
/**
/**
...
...
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论