Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
60fcd5aa
提交
60fcd5aa
authored
1月 20, 2017
作者:
Sergi
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Index hints: Lookup for indexes only once + other minor improvements.
上级
efd50a4e
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
34 行增加
和
28 行删除
+34
-28
Parser.java
h2/src/main/org/h2/command/Parser.java
+9
-7
Table.java
h2/src/main/org/h2/table/Table.java
+23
-19
TestIndexHints.java
h2/src/test/org/h2/test/db/TestIndexHints.java
+2
-2
没有找到文件。
h2/src/main/org/h2/command/Parser.java
浏览文件 @
60fcd5aa
...
...
@@ -1263,7 +1263,7 @@ public class Parser {
// for backward compatibility, handle case where USE is a table alias
if
(
readIf
(
"USE"
))
{
if
(
readIf
(
"INDEX"
))
{
indexHints
=
parse
UseIndexList
(
);
indexHints
=
parse
IndexHints
(
table
);
}
else
{
alias
=
"USE"
;
}
...
...
@@ -1273,7 +1273,7 @@ public class Parser {
// if alias present, a second chance to parse index hints
if
(
readIf
(
"USE"
))
{
read
(
"INDEX"
);
indexHints
=
parse
UseIndexList
(
);
indexHints
=
parse
IndexHints
(
table
);
}
}
}
...
...
@@ -1281,18 +1281,20 @@ public class Parser {
currentSelect
,
orderInFrom
++,
indexHints
);
}
private
IndexHints
parseUseIndexList
()
{
private
IndexHints
parseIndexHints
(
Table
table
)
{
if
(
table
==
null
)
{
throw
getSyntaxError
();
}
read
(
"("
);
LinkedHashSet
<
String
>
indexNames
=
new
LinkedHashSet
<>();
if
(!
readIf
(
")"
))
{
do
{
indexNames
.
add
(
readIdentifierWithSchema
());
String
indexName
=
readIdentifierWithSchema
();
Index
index
=
table
.
getIndex
(
indexName
);
indexNames
.
add
(
index
.
getName
());
}
while
(
readIf
(
","
));
read
(
")"
);
}
return
IndexHints
.
createUseIndexHints
(
indexNames
);
}
...
...
h2/src/main/org/h2/table/Table.java
浏览文件 @
60fcd5aa
...
...
@@ -246,6 +246,25 @@ public abstract class Table extends SchemaObjectBase {
*/
public
abstract
ArrayList
<
Index
>
getIndexes
();
/**
* Get an index by name.
*
* @param indexName the index name to search for
* @return the found index
*/
public
Index
getIndex
(
String
indexName
)
{
ArrayList
<
Index
>
indexes
=
getIndexes
();
if
(
indexes
!=
null
)
{
for
(
int
i
=
0
;
i
<
indexes
.
size
();
i
++)
{
Index
index
=
indexes
.
get
(
i
);
if
(
index
.
getName
().
equals
(
indexName
))
{
return
index
;
}
}
}
throw
DbException
.
get
(
ErrorCode
.
INDEX_NOT_FOUND_1
,
indexName
);
}
/**
* Check if this table is locked exclusively.
*
...
...
@@ -693,7 +712,7 @@ public abstract class Table extends SchemaObjectBase {
item
.
cost
,
item
.
getIndex
().
getPlanSQL
());
}
ArrayList
<
Index
>
indexes
=
getIndexes
();
IndexHints
indexHints
=
getIndexHints
(
session
,
filters
,
filter
);
IndexHints
indexHints
=
getIndexHints
(
filters
,
filter
);
if
(
indexes
!=
null
&&
masks
!=
null
)
{
for
(
int
i
=
1
,
size
=
indexes
.
size
();
i
<
size
;
i
++)
{
...
...
@@ -718,27 +737,12 @@ public abstract class Table extends SchemaObjectBase {
return
item
;
}
private
boolean
isIndexExcludedByHints
(
IndexHints
indexHints
,
Index
index
)
{
private
static
boolean
isIndexExcludedByHints
(
IndexHints
indexHints
,
Index
index
)
{
return
indexHints
!=
null
&&
!
indexHints
.
allowIndex
(
index
);
}
private
IndexHints
getIndexHints
(
Session
session
,
TableFilter
[]
filters
,
int
filter
)
{
if
(
filters
==
null
)
{
return
null
;
}
IndexHints
indexHints
=
filters
[
filter
].
getIndexHints
();
if
(
indexHints
==
null
)
{
return
null
;
}
// check all index names in hints are valid indexes
for
(
String
indexName
:
indexHints
.
getAllowedIndexes
())
{
Index
index
=
getSchema
().
findIndex
(
session
,
indexName
);
if
(
index
==
null
)
{
throw
DbException
.
get
(
ErrorCode
.
INDEX_NOT_FOUND_1
,
indexName
);
}
}
return
indexHints
;
private
static
IndexHints
getIndexHints
(
TableFilter
[]
filters
,
int
filter
)
{
return
filters
==
null
?
null
:
filters
[
filter
].
getIndexHints
();
}
/**
...
...
h2/src/test/org/h2/test/db/TestIndexHints.java
浏览文件 @
60fcd5aa
...
...
@@ -5,6 +5,7 @@
*/
package
org
.
h2
.
test
.
db
;
import
org.h2.api.ErrorCode
;
import
org.h2.test.TestBase
;
import
java.sql.Connection
;
...
...
@@ -126,10 +127,9 @@ public class TestIndexHints extends TestBase {
fail
(
"Expected exception: "
+
"Index \"IDX_DOESNT_EXIST\" not found"
);
}
catch
(
SQLException
e
)
{
assert
(
e
.
getErrorCode
()
==
1
);
assert
Equals
(
ErrorCode
.
INDEX_NOT_FOUND_1
,
e
.
getErrorCode
()
);
}
finally
{
conn
.
close
();
}
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论