Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
64fd3170
提交
64fd3170
authored
6 年前
作者:
Andrei Tokar
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
prevent any session state transition away from CLOSE
上级
bbac6fdb
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
16 行增加
和
11 行删除
+16
-11
Session.java
h2/src/main/org/h2/engine/Session.java
+15
-10
TestKillRestart.java
h2/src/test/org/h2/test/synth/TestKillRestart.java
+1
-1
没有找到文件。
h2/src/main/org/h2/engine/Session.java
浏览文件 @
64fd3170
...
...
@@ -1226,14 +1226,16 @@ public class Session extends SessionWithState implements TransactionStore.Rollba
return
;
}
State
prevState
=
this
.
state
.
get
();
lastThrottle
=
time
+
throttleNs
;
try
{
state
.
set
(
State
.
SLEEP
);
Thread
.
sleep
(
TimeUnit
.
NANOSECONDS
.
toMillis
(
throttleNs
));
}
catch
(
Exception
e
)
{
// ignore InterruptedException
}
finally
{
state
.
set
(
prevState
);
if
(
prevState
!=
State
.
CLOSED
)
{
lastThrottle
=
time
+
throttleNs
;
try
{
state
.
compareAndSet
(
prevState
,
State
.
SLEEP
);
Thread
.
sleep
(
TimeUnit
.
NANOSECONDS
.
toMillis
(
throttleNs
));
}
catch
(
Exception
e
)
{
// ignore InterruptedException
}
finally
{
state
.
compareAndSet
(
State
.
SLEEP
,
prevState
);
}
}
}
...
...
@@ -1250,7 +1252,7 @@ public class Session extends SessionWithState implements TransactionStore.Rollba
* from
*/
public
void
setCurrentCommand
(
Command
command
,
Object
generatedKeysRequest
)
{
this
.
currentCommand
=
command
;
currentCommand
=
command
;
// Preserve generated keys in case of a new query due to possible nested
// queries in update
if
(
command
!=
null
&&
!
command
.
isQuery
())
{
...
...
@@ -1265,7 +1267,10 @@ public class Session extends SessionWithState implements TransactionStore.Rollba
currentCommandStart
=
null
;
}
}
state
.
set
(
command
==
null
?
State
.
SLEEP
:
State
.
RUNNING
);
State
currentState
=
state
.
get
();
if
(
currentState
!=
State
.
CLOSED
)
{
state
.
compareAndSet
(
currentState
,
command
==
null
?
State
.
SLEEP
:
State
.
RUNNING
);
}
}
/**
...
...
This diff is collapsed.
Click to expand it.
h2/src/test/org/h2/test/synth/TestKillRestart.java
浏览文件 @
64fd3170
...
...
@@ -45,7 +45,7 @@ public class TestKillRestart extends TestDb {
String
user
=
getUser
(),
password
=
getPassword
();
String
selfDestruct
=
SelfDestructor
.
getPropertyString
(
60
);
String
[]
procDef
=
{
getJVM
(),
selfDestruct
,
"-cp"
,
getClassPath
(),
"-cp"
,
getClassPath
(),
"-ea"
,
getClass
().
getName
(),
"-url"
,
url
,
"-user"
,
user
,
"-password"
,
password
};
...
...
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论