Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
8a749024
提交
8a749024
authored
12月 19, 2017
作者:
Noel Grandin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
attempt to fix file not closed when using FILE_READ
and remove now unused AutoCloseInputStream
上级
be45032b
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
13 行增加
和
69 行删除
+13
-69
Function.java
h2/src/main/org/h2/expression/Function.java
+13
-11
AutoCloseInputStream.java
h2/src/main/org/h2/util/AutoCloseInputStream.java
+0
-58
没有找到文件。
h2/src/main/org/h2/expression/Function.java
浏览文件 @
8a749024
...
@@ -44,7 +44,6 @@ import org.h2.table.Table;
...
@@ -44,7 +44,6 @@ import org.h2.table.Table;
import
org.h2.table.TableFilter
;
import
org.h2.table.TableFilter
;
import
org.h2.tools.CompressTool
;
import
org.h2.tools.CompressTool
;
import
org.h2.tools.Csv
;
import
org.h2.tools.Csv
;
import
org.h2.util.AutoCloseInputStream
;
import
org.h2.util.DateTimeUtils
;
import
org.h2.util.DateTimeUtils
;
import
org.h2.util.IOUtils
;
import
org.h2.util.IOUtils
;
import
org.h2.util.JdbcUtils
;
import
org.h2.util.JdbcUtils
;
...
@@ -1637,8 +1636,8 @@ public class Function extends Expression implements FunctionCall {
...
@@ -1637,8 +1636,8 @@ public class Function extends Expression implements FunctionCall {
boolean
blob
=
args
.
length
==
1
;
boolean
blob
=
args
.
length
==
1
;
try
{
try
{
long
fileLength
=
FileUtils
.
size
(
fileName
);
long
fileLength
=
FileUtils
.
size
(
fileName
);
InputStream
in
=
new
AutoCloseInputStream
(
final
InputStream
in
=
FileUtils
.
newInputStream
(
fileName
);
FileUtils
.
newInputStream
(
fileName
));
try
{
if
(
blob
)
{
if
(
blob
)
{
result
=
database
.
getLobStorage
().
createBlob
(
in
,
fileLength
);
result
=
database
.
getLobStorage
().
createBlob
(
in
,
fileLength
);
}
else
{
}
else
{
...
@@ -1650,6 +1649,9 @@ public class Function extends Expression implements FunctionCall {
...
@@ -1650,6 +1649,9 @@ public class Function extends Expression implements FunctionCall {
}
}
result
=
database
.
getLobStorage
().
createClob
(
reader
,
fileLength
);
result
=
database
.
getLobStorage
().
createClob
(
reader
,
fileLength
);
}
}
}
finally
{
IOUtils
.
closeSilently
(
in
);
}
session
.
addTemporaryLob
(
result
);
session
.
addTemporaryLob
(
result
);
}
catch
(
IOException
e
)
{
}
catch
(
IOException
e
)
{
throw
DbException
.
convertIOException
(
e
,
fileName
);
throw
DbException
.
convertIOException
(
e
,
fileName
);
...
...
h2/src/main/org/h2/util/AutoCloseInputStream.java
deleted
100644 → 0
浏览文件 @
be45032b
/*
* Copyright 2004-2014 H2 Group. Multiple-Licensed under the MPL 2.0,
* and the EPL 1.0 (http://h2database.com/html/license.html).
* Initial Developer: H2 Group
*/
package
org
.
h2
.
util
;
import
java.io.IOException
;
import
java.io.InputStream
;
/**
* This input stream wrapper closes the base input stream when fully read.
*/
public
class
AutoCloseInputStream
extends
InputStream
{
private
final
InputStream
in
;
private
boolean
closed
;
/**
* Create a new input stream.
*
* @param in the input stream
*/
public
AutoCloseInputStream
(
InputStream
in
)
{
this
.
in
=
in
;
}
private
int
autoClose
(
int
x
)
throws
IOException
{
if
(
x
<
0
)
{
close
();
}
return
x
;
}
@Override
public
void
close
()
throws
IOException
{
if
(!
closed
)
{
in
.
close
();
closed
=
true
;
}
}
@Override
public
int
read
(
byte
[]
b
,
int
off
,
int
len
)
throws
IOException
{
return
closed
?
-
1
:
autoClose
(
in
.
read
(
b
,
off
,
len
));
}
@Override
public
int
read
(
byte
[]
b
)
throws
IOException
{
return
closed
?
-
1
:
autoClose
(
in
.
read
(
b
));
}
@Override
public
int
read
()
throws
IOException
{
return
closed
?
-
1
:
autoClose
(
in
.
read
());
}
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论