Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
9a0977bd
提交
9a0977bd
authored
7月 13, 2010
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
EXPLAIN ANALYZE now also lists the number of pages read from the file.
上级
751020f2
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
70 行增加
和
1 行删除
+70
-1
Explain.java
h2/src/main/org/h2/command/dml/Explain.java
+28
-1
PageStore.java
h2/src/main/org/h2/store/PageStore.java
+42
-0
没有找到文件。
h2/src/main/org/h2/command/dml/Explain.java
浏览文件 @
9a0977bd
...
...
@@ -6,12 +6,16 @@
*/
package
org
.
h2
.
command
.
dml
;
import
java.util.Map
;
import
java.util.TreeMap
;
import
java.util.Map.Entry
;
import
org.h2.command.Prepared
;
import
org.h2.engine.Session
;
import
org.h2.expression.Expression
;
import
org.h2.expression.ExpressionColumn
;
import
org.h2.result.LocalResult
;
import
org.h2.result.ResultInterface
;
import
org.h2.store.PageStore
;
import
org.h2.table.Column
;
import
org.h2.value.Value
;
import
org.h2.value.ValueString
;
...
...
@@ -52,14 +56,37 @@ public class Explain extends Prepared {
Expression
[]
expressions
=
{
expr
};
result
=
new
LocalResult
(
session
,
expressions
,
1
);
if
(
maxrows
>=
0
)
{
String
plan
;
if
(
executeCommand
)
{
PageStore
store
=
session
.
getDatabase
().
getPageStore
();
store
.
statisticsStart
();
if
(
command
.
isQuery
())
{
command
.
query
(
maxrows
);
}
else
{
command
.
update
();
}
plan
=
command
.
getPlanSQL
();
Map
<
String
,
Integer
>
statistics
=
store
.
statisticsEnd
();
if
(
statistics
!=
null
)
{
int
total
=
0
;
for
(
Entry
<
String
,
Integer
>
e
:
statistics
.
entrySet
())
{
total
+=
e
.
getValue
();
}
if
(
total
>
0
)
{
statistics
=
new
TreeMap
<
String
,
Integer
>(
statistics
);
StringBuilder
buff
=
new
StringBuilder
();
buff
.
append
(
"total: "
).
append
(
total
).
append
(
'\n'
);
for
(
Entry
<
String
,
Integer
>
e
:
statistics
.
entrySet
())
{
int
value
=
e
.
getValue
();
int
percent
=
(
int
)
(
100L
*
value
/
total
);
buff
.
append
(
e
.
getKey
()).
append
(
": "
).
append
(
value
).
append
(
" ("
).
append
(
percent
).
append
(
"%)\n"
);
}
plan
+=
"\n/*\n"
+
buff
.
toString
()
+
"*/"
;
}
}
}
else
{
plan
=
command
.
getPlanSQL
();
}
String
plan
=
command
.
getPlanSQL
();
add
(
plan
);
}
result
.
done
();
...
...
h2/src/main/org/h2/store/PageStore.java
浏览文件 @
9a0977bd
...
...
@@ -205,6 +205,8 @@ public class PageStore implements CacheWriter {
private
long
logSizeBase
;
private
HashMap
<
String
,
Integer
>
statistics
;
/**
* Create a new page store object.
*
...
...
@@ -225,6 +227,31 @@ public class PageStore implements CacheWriter {
systemSession
=
new
Session
(
database
,
null
,
0
);
}
/**
* Start collecting statistics.
*/
public
void
statisticsStart
()
{
statistics
=
New
.
hashMap
();
}
/**
* Stop collecting statistics.
*
* @return the statistics
*/
public
HashMap
<
String
,
Integer
>
statisticsEnd
()
{
HashMap
<
String
,
Integer
>
result
=
statistics
;
statistics
=
null
;
return
result
;
}
private
void
statisticsIncrement
(
String
key
)
{
if
(
statistics
!=
null
)
{
Integer
old
=
statistics
.
get
(
key
);
statistics
.
put
(
key
,
old
==
null
?
1
:
old
+
1
);
}
}
/**
* Copy the next page to the output stream.
*
...
...
@@ -546,6 +573,9 @@ public class PageStore implements CacheWriter {
if
(
index
==
null
)
{
throw
DbException
.
get
(
ErrorCode
.
FILE_CORRUPTED_1
,
"index not found "
+
indexId
);
}
if
(
statistics
!=
null
)
{
statisticsIncrement
(
index
.
getTable
().
getName
()
+
"."
+
index
.
getName
()
+
" read"
);
}
p
=
PageDataLeaf
.
read
(
index
,
data
,
pageId
);
break
;
}
...
...
@@ -555,11 +585,17 @@ public class PageStore implements CacheWriter {
if
(
index
==
null
)
{
throw
DbException
.
get
(
ErrorCode
.
FILE_CORRUPTED_1
,
"index not found "
+
indexId
);
}
if
(
statistics
!=
null
)
{
statisticsIncrement
(
index
.
getTable
().
getName
()
+
"."
+
index
.
getName
()
+
" read"
);
}
p
=
PageDataNode
.
read
(
index
,
data
,
pageId
);
break
;
}
case
Page
.
TYPE_DATA_OVERFLOW
:
{
p
=
PageDataOverflow
.
read
(
this
,
data
,
pageId
);
if
(
statistics
!=
null
)
{
statisticsIncrement
(
"overflow read"
);
}
break
;
}
case
Page
.
TYPE_BTREE_LEAF
:
{
...
...
@@ -568,6 +604,9 @@ public class PageStore implements CacheWriter {
if
(
index
==
null
)
{
throw
DbException
.
get
(
ErrorCode
.
FILE_CORRUPTED_1
,
"index not found "
+
indexId
);
}
if
(
statistics
!=
null
)
{
statisticsIncrement
(
index
.
getTable
().
getName
()
+
"."
+
index
.
getName
()
+
" read"
);
}
p
=
PageBtreeLeaf
.
read
(
index
,
data
,
pageId
);
break
;
}
...
...
@@ -577,6 +616,9 @@ public class PageStore implements CacheWriter {
if
(
index
==
null
)
{
throw
DbException
.
get
(
ErrorCode
.
FILE_CORRUPTED_1
,
"index not found "
+
indexId
);
}
if
(
statistics
!=
null
)
{
statisticsIncrement
(
index
.
getTable
().
getName
()
+
"."
+
index
.
getName
()
+
" read"
);
}
p
=
PageBtreeNode
.
read
(
index
,
data
,
pageId
);
break
;
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论