Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
5f5a7566
提交
5f5a7566
authored
15 年前
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Updating many rows with the same CLOB or BLOB values could result in FileNotFoundException.
上级
ba641b68
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
无相关合并请求
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
33 行增加
和
1 行删除
+33
-1
RowList.java
h2/src/main/org/h2/result/RowList.java
+5
-0
ValueLob.java
h2/src/main/org/h2/value/ValueLob.java
+16
-0
TestLob.java
h2/src/test/org/h2/test/db/TestLob.java
+12
-1
没有找到文件。
h2/src/main/org/h2/result/RowList.java
浏览文件 @
5f5a7566
...
...
@@ -70,7 +70,12 @@ public class RowList {
if
(
lobs
==
null
)
{
lobs
=
ObjectArray
.
newInstance
();
}
// need to create a copy, otherwise,
// if stored multiple times, it may be renamed
// and then not found
lob
=
lob
.
copyToTemp
();
lobs
.
add
(
lob
);
v
=
lob
;
}
}
buff
.
checkCapacity
(
buff
.
getValueLen
(
v
));
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/value/ValueLob.java
浏览文件 @
5f5a7566
...
...
@@ -838,4 +838,20 @@ public class ValueLob extends Value {
return
128
;
}
/**
* Create an independent copy of this temporary value.
* The file will not be deleted automatically.
*
* @return the value
*/
public
ValueLob
copyToTemp
()
throws
SQLException
{
ValueLob
lob
;
if
(
type
==
CLOB
)
{
lob
=
ValueLob
.
createClob
(
getReader
(),
precision
,
handler
);
}
else
{
lob
=
ValueLob
.
createBlob
(
getInputStream
(),
precision
,
handler
);
}
return
lob
;
}
}
This diff is collapsed.
Click to expand it.
h2/src/test/org/h2/test/db/TestLob.java
浏览文件 @
5f5a7566
...
...
@@ -23,7 +23,6 @@ import java.sql.Savepoint;
import
java.sql.Statement
;
import
java.util.ArrayList
;
import
java.util.Random
;
import
org.h2.constant.SysProperties
;
import
org.h2.store.FileLister
;
import
org.h2.test.TestBase
;
...
...
@@ -49,6 +48,7 @@ public class TestLob extends TestBase {
if
(
config
.
memory
)
{
return
;
}
testLobUpdateMany
();
testLobDeleteTemp
();
testLobDelete
();
testLobVariable
();
...
...
@@ -73,6 +73,17 @@ public class TestLob extends TestBase {
deleteDb
(
"lob"
);
}
private
void
testLobUpdateMany
()
throws
SQLException
{
deleteDb
(
"lob"
);
Connection
conn
=
getConnection
(
"lob"
);
Statement
stat
=
conn
.
createStatement
();
stat
.
execute
(
"create table post(id int primary key, text clob) as select x, space(96) from system_range(1, 329)"
);
PreparedStatement
prep
=
conn
.
prepareStatement
(
"update post set text = ?"
);
prep
.
setCharacterStream
(
1
,
new
StringReader
(
new
String
(
new
char
[
1025
])),
-
1
);
prep
.
executeUpdate
();
conn
.
close
();
}
private
void
testLobDeleteTemp
()
throws
SQLException
{
deleteDb
(
"lob"
);
Connection
conn
=
getConnection
(
"lob"
);
...
...
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论