Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
d2245130
提交
d2245130
authored
9 年前
作者:
Noel Grandin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Performance improvement for metadata queries that join against the
COLUMNS metatable
上级
d3bd6b1d
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
40 行增加
和
1 行删除
+40
-1
changelog.html
h2/src/docsrc/html/changelog.html
+2
-0
Database.java
h2/src/main/org/h2/engine/Database.java
+11
-0
Schema.java
h2/src/main/org/h2/schema/Schema.java
+7
-0
MetaTable.java
h2/src/main/org/h2/table/MetaTable.java
+20
-1
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
d2245130
...
@@ -21,6 +21,8 @@ Change Log
...
@@ -21,6 +21,8 @@ Change Log
<h2>
Next Version (unreleased)
</h2>
<h2>
Next Version (unreleased)
</h2>
<ul>
<ul>
<li>
Performance improvement for metadata queries that join against the COLUMNS metatable
</li>
<li>
MVStore: power failure could corrupt the store, if writes were re-ordered.
<li>
MVStore: power failure could corrupt the store, if writes were re-ordered.
</li>
</li>
<li>
For compatibility with other databases, support for (double and float)
<li>
For compatibility with other databases, support for (double and float)
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/engine/Database.java
浏览文件 @
d2245130
...
@@ -1511,6 +1511,17 @@ public class Database implements DataHandler {
...
@@ -1511,6 +1511,17 @@ public class Database implements DataHandler {
return
list
;
return
list
;
}
}
public
ArrayList
<
Table
>
getTableOrViewByName
(
String
name
)
{
ArrayList
<
Table
>
list
=
New
.
arrayList
();
for
(
Schema
schema
:
schemas
.
values
())
{
Table
table
=
schema
.
getTableOrViewByName
(
name
);
if
(
table
!=
null
)
{
list
.
add
(
table
);
}
}
return
list
;
}
public
ArrayList
<
Schema
>
getAllSchemas
()
{
public
ArrayList
<
Schema
>
getAllSchemas
()
{
initMetaTables
();
initMetaTables
();
return
New
.
arrayList
(
schemas
.
values
());
return
New
.
arrayList
(
schemas
.
values
());
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/schema/Schema.java
浏览文件 @
d2245130
...
@@ -538,6 +538,13 @@ public class Schema extends DbObjectBase {
...
@@ -538,6 +538,13 @@ public class Schema extends DbObjectBase {
}
}
}
}
public
Table
getTableOrViewByName
(
String
name
)
{
synchronized
(
database
)
{
return
tablesAndViews
.
get
(
name
);
}
}
/**
/**
* Remove an object from this schema.
* Remove an object from this schema.
*
*
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/table/MetaTable.java
浏览文件 @
d2245130
...
@@ -17,6 +17,7 @@ import java.util.ArrayList;
...
@@ -17,6 +17,7 @@ import java.util.ArrayList;
import
java.util.Collections
;
import
java.util.Collections
;
import
java.util.HashMap
;
import
java.util.HashMap
;
import
java.util.Locale
;
import
java.util.Locale
;
import
org.h2.command.Command
;
import
org.h2.command.Command
;
import
org.h2.constraint.Constraint
;
import
org.h2.constraint.Constraint
;
import
org.h2.constraint.ConstraintCheck
;
import
org.h2.constraint.ConstraintCheck
;
...
@@ -615,6 +616,16 @@ public class MetaTable extends Table {
...
@@ -615,6 +616,16 @@ public class MetaTable extends Table {
return
tables
;
return
tables
;
}
}
private
ArrayList
<
Table
>
getTablesByName
(
Session
session
,
String
tableName
)
{
ArrayList
<
Table
>
tables
=
database
.
getTableOrViewByName
(
tableName
);
for
(
Table
temp
:
session
.
getLocalTempTables
())
{
if
(
temp
.
getName
().
equals
(
tableName
))
{
tables
.
add
(
temp
);
}
}
return
tables
;
}
private
boolean
checkIndex
(
Session
session
,
String
value
,
Value
indexFrom
,
private
boolean
checkIndex
(
Session
session
,
String
value
,
Value
indexFrom
,
Value
indexTo
)
{
Value
indexTo
)
{
if
(
value
==
null
||
(
indexFrom
==
null
&&
indexTo
==
null
))
{
if
(
value
==
null
||
(
indexFrom
==
null
&&
indexTo
==
null
))
{
...
@@ -727,7 +738,15 @@ public class MetaTable extends Table {
...
@@ -727,7 +738,15 @@ public class MetaTable extends Table {
break
;
break
;
}
}
case
COLUMNS:
{
case
COLUMNS:
{
for
(
Table
table
:
getAllTables
(
session
))
{
// reduce the number of tables to scan - makes some metadata queries 10x faster
final
ArrayList
<
Table
>
tablesToList
;
if
(
indexFrom
!=
null
&&
indexTo
!=
null
&&
indexFrom
.
equals
(
indexTo
))
{
String
tableName
=
identifier
(
indexFrom
.
getString
());
tablesToList
=
getTablesByName
(
session
,
tableName
);
}
else
{
tablesToList
=
getAllTables
(
session
);
}
for
(
Table
table
:
tablesToList
)
{
String
tableName
=
identifier
(
table
.
getName
());
String
tableName
=
identifier
(
table
.
getName
());
if
(!
checkIndex
(
session
,
tableName
,
indexFrom
,
indexTo
))
{
if
(!
checkIndex
(
session
,
tableName
,
indexFrom
,
indexTo
))
{
continue
;
continue
;
...
...
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论