Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
d9568981
提交
d9568981
authored
11月 20, 2008
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
--no commit message
--no commit message
上级
6e0c5153
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
3 行增加
和
27 行删除
+3
-27
TestAll.java
h2/src/test/org/h2/test/TestAll.java
+2
-26
TestOpenClose.java
h2/src/test/org/h2/test/db/TestOpenClose.java
+1
-1
没有找到文件。
h2/src/test/org/h2/test/TestAll.java
浏览文件 @
d9568981
...
@@ -9,6 +9,7 @@ package org.h2.test;
...
@@ -9,6 +9,7 @@ package org.h2.test;
import
java.sql.SQLException
;
import
java.sql.SQLException
;
import
java.util.Properties
;
import
java.util.Properties
;
import
org.h2.Driver
;
import
org.h2.engine.Constants
;
import
org.h2.engine.Constants
;
import
org.h2.store.fs.FileSystemDisk
;
import
org.h2.store.fs.FileSystemDisk
;
import
org.h2.test.bench.TestPerformance
;
import
org.h2.test.bench.TestPerformance
;
...
@@ -285,34 +286,8 @@ java org.h2.test.TestAll timer
...
@@ -285,34 +286,8 @@ java org.h2.test.TestAll timer
remove emergencyReserve?
remove emergencyReserve?
build.sh from mac (test in Ubuntu)
build.sh from mac (test in Ubuntu)
test.sql
good:
select documents.*, 'this is a test' as snippet
from documents, document_text
where
document_text.id in (select substring(search.query, locate('=',
search.query) + 1) from ftl_search('+nelson +"drip pan"', 500, 0)
search)
and documents.id = document_text.doc_id
and source_id in (3, 2, 4, 1)
limit 500
bad:
select documents.*, 'this is a test' as snippet
from document_text, documents
where
document_text.id in (select substring(search.query, locate('=',
search.query) + 1) from ftl_search('+nelson +"drip pan"', 500, 0)
search)
and documents.id = document_text.doc_id
and source_id in (3, 2, 4, 1)
limit 500
split files (1 GB max size)
split files (1 GB max size)
study SQLite file format
multithreaded kernel
multithreaded kernel
remove old TODO
remove old TODO
...
@@ -671,6 +646,7 @@ http://www.w3schools.com/sql/
...
@@ -671,6 +646,7 @@ http://www.w3schools.com/sql/
* a TCP server if the test uses remote connections.
* a TCP server if the test uses remote connections.
*/
*/
void
beforeTest
()
throws
SQLException
{
void
beforeTest
()
throws
SQLException
{
Driver
.
load
();
DeleteDbFiles
.
execute
(
TestBase
.
baseDir
,
null
,
true
);
DeleteDbFiles
.
execute
(
TestBase
.
baseDir
,
null
,
true
);
FileSystemDisk
.
getInstance
().
deleteRecursive
(
"trace.db"
);
FileSystemDisk
.
getInstance
().
deleteRecursive
(
"trace.db"
);
if
(
networked
)
{
if
(
networked
)
{
...
...
h2/src/test/org/h2/test/db/TestOpenClose.java
浏览文件 @
d9568981
...
@@ -118,7 +118,7 @@ public class TestOpenClose extends TestBase implements DatabaseEventListener {
...
@@ -118,7 +118,7 @@ public class TestOpenClose extends TestBase implements DatabaseEventListener {
conn
.
createStatement
().
execute
(
"drop table employee if exists"
);
conn
.
createStatement
().
execute
(
"drop table employee if exists"
);
conn
.
createStatement
().
execute
(
"create table employee(id int primary key, name varchar, salary int)"
);
conn
.
createStatement
().
execute
(
"create table employee(id int primary key, name varchar, salary int)"
);
conn
.
close
();
conn
.
close
();
int
len
=
this
.
getSize
(
200
,
4
000
);
int
len
=
this
.
getSize
(
200
,
1
000
);
Thread
[]
threads
=
new
Thread
[
len
];
Thread
[]
threads
=
new
Thread
[
len
];
for
(
int
i
=
0
;
i
<
len
;
i
++)
{
for
(
int
i
=
0
;
i
<
len
;
i
++)
{
threads
[
i
]
=
new
Thread
()
{
threads
[
i
]
=
new
Thread
()
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论