Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
422c8dc8
提交
422c8dc8
authored
1月 22, 2014
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Tests
上级
4cd69931
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
22 行增加
和
9 行删除
+22
-9
features.html
h2/src/docsrc/html/features.html
+1
-1
MVStore.java
h2/src/main/org/h2/mvstore/MVStore.java
+3
-0
TestAll.java
h2/src/test/org/h2/test/TestAll.java
+0
-1
TestLob.java
h2/src/test/org/h2/test/db/TestLob.java
+17
-7
TestStreamStore.java
h2/src/test/org/h2/test/store/TestStreamStore.java
+1
-0
没有找到文件。
h2/src/docsrc/html/features.html
浏览文件 @
422c8dc8
...
...
@@ -776,7 +776,7 @@ the INIT property. Note that multiple commands may be passed to INIT, but the se
must be escaped, as in the example below.
</p>
<pre>
String url = "jdbc:h2:mem;INIT=runscript from '~/create.sql'\\;runscript from '~/populate.sql'";
String url = "jdbc:h2:mem
:test
;INIT=runscript from '~/create.sql'\\;runscript from '~/populate.sql'";
</pre>
<p>
Please note the double backslash is only required in a Java or properties file.
...
...
h2/src/main/org/h2/mvstore/MVStore.java
浏览文件 @
422c8dc8
...
...
@@ -54,6 +54,7 @@ MVTableEngine:
- maybe enable MVCC by default (but allow to disable it)
- use StreamStore to avoid deadlocks
- config options for compression and page size (maybe combined)
- test with MVStore.ASSERT enabled
TransactionStore:
...
...
@@ -130,6 +131,8 @@ MVStore:
and rolled back when opening - is this really needed?
- compact* should also store uncommitted changes (if there are any)
- write a LSM-tree (log structured merge tree) utility on top of the MVStore
- improve memory calculation for transient and cache
specially for large pages (StreamStore)
*/
...
...
h2/src/test/org/h2/test/TestAll.java
浏览文件 @
422c8dc8
...
...
@@ -695,7 +695,6 @@ kill -9 `jps -l | grep "org.h2.test." | cut -d " " -f 1`
new
TestJavaObject
().
runTest
(
this
);
new
TestJavaObjectSerializer
().
runTest
(
this
);
new
TestUrlJavaObjectSerializer
().
runTest
(
this
);
new
TestLimitUpdates
().
runTest
(
this
);
new
TestLobApi
().
runTest
(
this
);
new
TestManyJdbcObjects
().
runTest
(
this
);
...
...
h2/src/test/org/h2/test/db/TestLob.java
浏览文件 @
422c8dc8
...
...
@@ -607,6 +607,9 @@ public class TestLob extends TestBase {
}
private
void
testLobCleanupSessionTemporaries
()
throws
SQLException
{
if
(
config
.
mvStore
)
{
return
;
}
deleteDb
(
"lob"
);
Connection
conn
=
getConnection
(
"lob"
);
Statement
stat
=
conn
.
createStatement
();
...
...
@@ -740,25 +743,28 @@ public class TestLob extends TestBase {
int
rows
=
0
;
Savepoint
sp
=
null
;
int
len
=
getSize
(
100
,
400
);
// config.traceTest = true;
for
(
int
i
=
0
;
i
<
len
;
i
++)
{
switch
(
random
.
nextInt
(
10
))
{
case
0
:
trace
(
"insert
"
);
trace
(
"insert
"
+
i
);
conn
.
createStatement
().
execute
(
"INSERT INTO TEST(DATA, DATA2) VALUES('"
+
i
+
"' || SPACE("
+
spaceLen
+
"), '"
+
i
+
"')"
);
rows
++;
break
;
case
1
:
if
(
rows
>
0
)
{
trace
(
"delete"
);
conn
.
createStatement
().
execute
(
"DELETE FROM TEST WHERE ID="
+
random
.
nextInt
(
rows
));
int
x
=
random
.
nextInt
(
rows
);
trace
(
"delete "
+
x
);
conn
.
createStatement
().
execute
(
"DELETE FROM TEST WHERE ID="
+
x
);
}
break
;
case
2
:
if
(
rows
>
0
)
{
trace
(
"update"
);
int
x
=
random
.
nextInt
(
rows
);
trace
(
"update "
+
x
);
conn
.
createStatement
().
execute
(
"UPDATE TEST SET DATA='x' || DATA, DATA2='x' || DATA2 WHERE ID="
+
random
.
nextInt
(
rows
)
);
"UPDATE TEST SET DATA='x' || DATA, DATA2='x' || DATA2 WHERE ID="
+
x
);
}
break
;
case
3
:
...
...
@@ -801,9 +807,10 @@ public class TestLob extends TestBase {
}
ResultSet
rs
=
conn
.
createStatement
().
executeQuery
(
"SELECT * FROM TEST"
);
while
(
rs
.
next
())
{
int
id
=
rs
.
getInt
(
"ID"
);
String
d1
=
rs
.
getString
(
"DATA"
).
trim
();
String
d2
=
rs
.
getString
(
"DATA2"
)
.
trim
()
;
assertEquals
(
d1
,
d2
);
String
d2
=
rs
.
getString
(
"DATA2"
);
assertEquals
(
"id:"
+
id
,
d2
,
d1
);
}
}
...
...
@@ -1183,6 +1190,9 @@ public class TestLob extends TestBase {
prep
=
conn
.
prepareStatement
(
"INSERT INTO TEST VALUES(1, ?)"
);
String
s
=
new
String
(
getRandomChars
(
10000
,
1
));
byte
[]
data
=
s
.
getBytes
(
"UTF-8"
);
// if we keep the string, debugging with Eclipse is not possible
// because Eclipse wants to display the large string and fails
s
=
""
;
prep
.
setBinaryStream
(
1
,
new
ByteArrayInputStream
(
data
),
0
);
prep
.
execute
();
...
...
h2/src/test/org/h2/test/store/TestStreamStore.java
浏览文件 @
422c8dc8
...
...
@@ -213,6 +213,7 @@ public class TestStreamStore extends TestBase {
store
.
setMaxBlockSize
(
100
);
byte
[]
id
=
store
.
put
(
new
ByteArrayInputStream
(
new
byte
[
10000
]));
InputStream
in
=
store
.
get
(
id
);
assertEquals
(
0
,
in
.
read
(
new
byte
[
0
]));
assertEquals
(
0
,
in
.
read
());
assertEquals
(
3
,
reads
.
get
());
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论