Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
79914c41
提交
79914c41
authored
15 年前
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Data types CLOB and BLOB: the maximum precision was Integer.MAX_VALUE, it is now Long.MAX_VALUE.
上级
c5dddee9
master
noel-pr1
plus33-master
pr/267
stumc-Issue#576
version-1.1.x
version-1.4.198
version-1.4.197
version-1.4.196
version-1.4.195
version-1.4.194
version-1.4.193
version-1.4.192
version-1.4.191
version-1.4.190
version-1.4.188
version-1.4.187
version-1.4.186
version-1.4.185
version-1.4.184
version-1.4.183
version-1.4.182
version-1.4.181
version-1.4.178
version-1.4.177
version-1.3
version-1.2
version-1.1
version-1.0
无相关合并请求
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
90 行增加
和
2 行删除
+90
-2
CompressTool.java
h2/src/main/org/h2/tools/CompressTool.java
+2
-1
TestAll.java
h2/src/test/org/h2/test/TestAll.java
+3
-0
TestBase.java
h2/src/test/org/h2/test/TestBase.java
+1
-1
TestLargeBlob.java
h2/src/test/org/h2/test/db/TestLargeBlob.java
+84
-0
没有找到文件。
h2/src/main/org/h2/tools/CompressTool.java
浏览文件 @
79914c41
...
...
@@ -25,6 +25,7 @@ import org.h2.compress.Compressor;
import
org.h2.compress.LZFInputStream
;
import
org.h2.compress.LZFOutputStream
;
import
org.h2.constant.ErrorCode
;
import
org.h2.engine.Constants
;
import
org.h2.message.Message
;
import
org.h2.util.MemoryUtils
;
import
org.h2.util.StringUtils
;
...
...
@@ -35,7 +36,7 @@ import org.h2.util.StringUtils;
public
class
CompressTool
{
private
static
final
CompressTool
INSTANCE
=
new
CompressTool
();
private
static
final
int
MAX_BUFFER_SIZE
=
64
*
1024
;
private
static
final
int
MAX_BUFFER_SIZE
=
3
*
Constants
.
IO_BUFFER_SIZE_COMPRESS
;
private
byte
[]
cachedBuffer
;
private
CompressTool
()
{
...
...
This diff is collapsed.
Click to expand it.
h2/src/test/org/h2/test/TestAll.java
浏览文件 @
79914c41
...
...
@@ -30,6 +30,7 @@ import org.h2.test.db.TestFullText;
import
org.h2.test.db.TestFunctionOverload
;
import
org.h2.test.db.TestFunctions
;
import
org.h2.test.db.TestIndex
;
import
org.h2.test.db.TestLargeBlob
;
import
org.h2.test.db.TestLinkedTable
;
import
org.h2.test.db.TestListener
;
import
org.h2.test.db.TestLob
;
...
...
@@ -431,6 +432,7 @@ kill -9 `jps -l | grep "org.h2.test.TestAll" | cut -d " " -f 1`
test
();
smallLog
=
false
;
networked
=
false
;
ssl
=
false
;
logMode
=
0
;
traceLevelFile
=
0
;
...
...
@@ -476,6 +478,7 @@ kill -9 `jps -l | grep "org.h2.test.TestAll" | cut -d " " -f 1`
new
TestFunctions
().
runTest
(
this
);
new
TestFunctionOverload
().
runTest
(
this
);
new
TestIndex
().
runTest
(
this
);
new
TestLargeBlob
().
runTest
(
this
);
new
TestLinkedTable
().
runTest
(
this
);
new
TestListener
().
runTest
(
this
);
new
TestLob
().
runTest
(
this
);
...
...
This diff is collapsed.
Click to expand it.
h2/src/test/org/h2/test/TestBase.java
浏览文件 @
79914c41
...
...
@@ -398,7 +398,7 @@ public abstract class TestBase {
*
* @param s the message
*/
p
rotected
void
println
(
String
s
)
{
p
ublic
void
println
(
String
s
)
{
long
time
=
System
.
currentTimeMillis
()
-
start
;
printlnWithTime
(
time
,
getClass
().
getName
()
+
" "
+
s
);
}
...
...
This diff is collapsed.
Click to expand it.
h2/src/test/org/h2/test/db/TestLargeBlob.java
0 → 100644
浏览文件 @
79914c41
/*
* Copyright 2004-2009 H2 Group. Multiple-Licensed under the H2 License,
* Version 1.0, and under the Eclipse Public License, Version 1.0
* (http://h2database.com/html/license.html).
* Initial Developer: H2 Group
*/
package
org
.
h2
.
test
.
db
;
import
java.io.InputStream
;
import
java.sql.Connection
;
import
java.sql.PreparedStatement
;
import
java.sql.ResultSet
;
import
java.sql.Statement
;
import
org.h2.test.TestBase
;
/**
* Test a BLOB larger than Integer.MAX_VALUE
*/
public
class
TestLargeBlob
extends
TestBase
{
/**
* Run just this test.
*
* @param a ignored
*/
public
static
void
main
(
String
[]
a
)
throws
Exception
{
TestBase
.
createCaller
().
init
().
test
();
}
public
void
test
()
throws
Exception
{
if
(!
config
.
big
||
config
.
memory
||
config
.
mvcc
||
config
.
networked
)
{
return
;
}
deleteDb
(
"largeBlob"
);
String
url
=
getURL
(
"largeBlob;TRACE_LEVEL_FILE=0"
,
true
);
Connection
conn
=
getConnection
(
url
);
final
long
testLength
=
Integer
.
MAX_VALUE
+
110L
;
Statement
stat
=
conn
.
createStatement
();
stat
.
execute
(
"set COMPRESS_LOB LZF"
);
stat
.
execute
(
"create table test(x blob)"
);
PreparedStatement
prep
=
conn
.
prepareStatement
(
"insert into test values(?)"
);
prep
.
setBinaryStream
(
1
,
new
InputStream
()
{
long
remaining
=
testLength
;
int
p
;
byte
[]
oneByte
=
new
byte
[
1
];
public
void
close
()
{
// ignore
}
public
int
read
(
byte
[]
buff
,
int
off
,
int
len
)
{
len
=
(
int
)
Math
.
min
(
remaining
,
len
);
remaining
-=
len
;
if
(
p
++
%
5000
==
0
)
{
println
(
""
+
remaining
);
}
return
len
==
0
?
-
1
:
len
;
}
public
int
read
()
{
return
read
(
oneByte
,
0
,
1
)
<
0
?
-
1
:
oneByte
[
0
];
}
},
-
1
);
prep
.
executeUpdate
();
ResultSet
rs
=
stat
.
executeQuery
(
"select length(x) from test"
);
rs
.
next
();
assertEquals
(
testLength
,
rs
.
getLong
(
1
));
rs
=
stat
.
executeQuery
(
"select x from test"
);
rs
.
next
();
InputStream
in
=
rs
.
getBinaryStream
(
1
);
byte
[]
buff
=
new
byte
[
4
*
1024
];
long
length
=
0
;
while
(
true
)
{
int
len
=
in
.
read
(
buff
);
if
(
len
<
0
)
{
break
;
}
length
+=
len
;
}
assertEquals
(
testLength
,
length
);
conn
.
close
();
}
}
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论