Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
4feff806
提交
4feff806
authored
6月 24, 2013
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Formatting.
上级
0458f3d4
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
12 行增加
和
10 行删除
+12
-10
WebServer.java
h2/src/main/org/h2/server/web/WebServer.java
+5
-4
LobStorageBackend.java
h2/src/main/org/h2/store/LobStorageBackend.java
+7
-6
没有找到文件。
h2/src/main/org/h2/server/web/WebServer.java
浏览文件 @
4feff806
...
...
@@ -23,25 +23,26 @@ import java.util.HashMap;
import
java.util.HashSet
;
import
java.util.Locale
;
import
java.util.Map
;
import
java.util.Map.Entry
;
import
java.util.Properties
;
import
java.util.Set
;
import
java.util.TimeZone
;
import
java.util.Map.Entry
;
import
org.h2.constant.SysProperties
;
import
org.h2.engine.Constants
;
import
org.h2.message.TraceSystem
;
import
org.h2.server.Service
;
import
org.h2.server.ShutdownHandler
;
import
org.h2.store.fs.FileUtils
;
import
org.h2.util.StringUtils
;
import
org.h2.util.Tool
;
import
org.h2.util.Utils
;
import
org.h2.util.IOUtils
;
import
org.h2.util.JdbcUtils
;
import
org.h2.util.MathUtils
;
import
org.h2.util.NetUtils
;
import
org.h2.util.New
;
import
org.h2.util.SortedProperties
;
import
org.h2.util.StringUtils
;
import
org.h2.util.Tool
;
import
org.h2.util.Utils
;
/**
* The web server is a simple standalone HTTP server that implements the H2
...
...
h2/src/main/org/h2/store/LobStorageBackend.java
浏览文件 @
4feff806
...
...
@@ -155,7 +155,7 @@ public class LobStorageBackend implements LobStorageInterface {
/**
* Remove all LOBs for this table.
*
*
* @param tableId the table id
*/
public
void
removeAllForTable
(
int
tableId
)
{
...
...
@@ -184,13 +184,14 @@ public class LobStorageBackend implements LobStorageInterface {
/**
* Read a block of data from the given LOB.
*
*
* @param lob the lob id
* @param seq the block sequence number
* @return the block (expanded if stored compressed)
*/
byte
[]
readBlock
(
long
lob
,
int
seq
)
throws
SQLException
{
// we have to take the lock on the session before the lock on the database to prevent ABBA deadlocks
// we have to take the lock on the session
// before the lock on the database to prevent ABBA deadlocks
synchronized
(
conn
.
getSession
())
{
synchronized
(
database
)
{
String
sql
=
"SELECT COMPRESSED, DATA FROM "
+
LOB_MAP
+
" M "
+
...
...
@@ -218,7 +219,7 @@ public class LobStorageBackend implements LobStorageInterface {
* Retrieve the sequence id and position that is smaller than the requested
* position. Those values can be used to quickly skip to a given position
* without having to read all data.
*
*
* @param lob the lob
* @param pos the required position
* @return null if the data is not available, or an array of two elements:
...
...
@@ -228,7 +229,7 @@ public class LobStorageBackend implements LobStorageInterface {
synchronized
(
conn
.
getSession
())
{
synchronized
(
database
)
{
String
sql
=
"SELECT MAX(SEQ), MAX(POS) FROM "
+
LOB_MAP
+
" WHERE LOB = ? AND POS < ?"
;
" WHERE LOB = ? AND POS < ?"
;
PreparedStatement
prep
=
prepare
(
sql
);
prep
.
setLong
(
1
,
lob
);
prep
.
setLong
(
2
,
pos
);
...
...
@@ -481,7 +482,7 @@ public class LobStorageBackend implements LobStorageInterface {
/**
* Store a block in the LOB storage.
*
*
* @param lobId the lob id
* @param seq the sequence number
* @param pos the position within the lob
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论