Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
194ebf95
提交
194ebf95
authored
8月 18, 2015
作者:
Thomas Mueller Graf
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Local temporary tables with many rows did not work correctly due to automatic analyze.
上级
ad7c0e92
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
19 行增加
和
0 行删除
+19
-0
changelog.html
h2/src/docsrc/html/changelog.html
+2
-0
Database.java
h2/src/main/org/h2/engine/Database.java
+2
-0
TestTempTables.java
h2/src/test/org/h2/test/db/TestTempTables.java
+15
-0
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
194ebf95
...
@@ -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>
Local temporary tables with many rows did not work correctly due to automatic analyze.
</li>
<li>
Server mode: concurrently using the same connection could throw an exception
<li>
Server mode: concurrently using the same connection could throw an exception
"Connection is broken: unexpected status".
"Connection is broken: unexpected status".
</li>
</li>
...
...
h2/src/main/org/h2/engine/Database.java
浏览文件 @
194ebf95
...
@@ -1620,6 +1620,8 @@ public class Database implements DataHandler {
...
@@ -1620,6 +1620,8 @@ public class Database implements DataHandler {
int
id
=
obj
.
getId
();
int
id
=
obj
.
getId
();
removeMeta
(
session
,
id
);
removeMeta
(
session
,
id
);
addMeta
(
session
,
obj
);
addMeta
(
session
,
obj
);
// for temporary objects
objectIds
.
set
(
id
);
}
}
/**
/**
...
...
h2/src/test/org/h2/test/db/TestTempTables.java
浏览文件 @
194ebf95
...
@@ -6,6 +6,7 @@
...
@@ -6,6 +6,7 @@
package
org
.
h2
.
test
.
db
;
package
org
.
h2
.
test
.
db
;
import
java.sql.Connection
;
import
java.sql.Connection
;
import
java.sql.PreparedStatement
;
import
java.sql.ResultSet
;
import
java.sql.ResultSet
;
import
java.sql.SQLException
;
import
java.sql.SQLException
;
import
java.sql.Statement
;
import
java.sql.Statement
;
...
@@ -32,6 +33,7 @@ public class TestTempTables extends TestBase {
...
@@ -32,6 +33,7 @@ public class TestTempTables extends TestBase {
@Override
@Override
public
void
test
()
throws
SQLException
{
public
void
test
()
throws
SQLException
{
deleteDb
(
"tempTables"
);
deleteDb
(
"tempTables"
);
testAnalyzeReuseObjectId
();
testTempSequence
();
testTempSequence
();
testTempFileResultSet
();
testTempFileResultSet
();
testTempTableResultSet
();
testTempTableResultSet
();
...
@@ -49,6 +51,19 @@ public class TestTempTables extends TestBase {
...
@@ -49,6 +51,19 @@ public class TestTempTables extends TestBase {
deleteDb
(
"tempTables"
);
deleteDb
(
"tempTables"
);
}
}
private
void
testAnalyzeReuseObjectId
()
throws
SQLException
{
deleteDb
(
"tempTables"
);
Connection
conn
=
getConnection
(
"tempTables"
);
Statement
stat
=
conn
.
createStatement
();
stat
.
execute
(
"create local temporary table test(id identity)"
);
PreparedStatement
prep
=
conn
.
prepareStatement
(
"insert into test values(null)"
);
for
(
int
i
=
0
;
i
<
10000
;
i
++)
{
prep
.
execute
();
}
stat
.
execute
(
"create local temporary table test2(id identity) as select x from system_range(1, 10)"
);
conn
.
close
();
}
private
void
testTempSequence
()
throws
SQLException
{
private
void
testTempSequence
()
throws
SQLException
{
deleteDb
(
"tempTables"
);
deleteDb
(
"tempTables"
);
Connection
conn
=
getConnection
(
"tempTables"
);
Connection
conn
=
getConnection
(
"tempTables"
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论