Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
0e4cbb32
提交
0e4cbb32
authored
1月 26, 2016
作者:
Noel Grandin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
improve performance of queries that use LIKE 'foo%' - 10x in the case of one of my queries
上级
f31539cc
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
26 行增加
和
8 行删除
+26
-8
changelog.html
h2/src/docsrc/html/changelog.html
+2
-0
CompareLike.java
h2/src/main/org/h2/expression/CompareLike.java
+24
-8
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
0e4cbb32
...
...
@@ -21,6 +21,8 @@ Change Log
<h2>
Next Version (unreleased)
</h2>
<ul>
<li>
improve performance of queries that use LIKE 'foo%' - 10x in the case of one of my queries
</li>
<li>
Issue #229: DATEDIFF does not work for 'WEEK'
</li>
<li>
Issue #156: Add support for getGeneratedKeys() when executing commands via PreparedStatement#executeBatch
...
...
h2/src/main/org/h2/expression/CompareLike.java
浏览文件 @
0e4cbb32
...
...
@@ -7,7 +7,6 @@ package org.h2.expression;
import
java.util.regex.Pattern
;
import
java.util.regex.PatternSyntaxException
;
import
org.h2.api.ErrorCode
;
import
org.h2.engine.Database
;
import
org.h2.engine.Session
;
...
...
@@ -38,6 +37,7 @@ public class CompareLike extends Condition {
private
char
[]
patternChars
;
private
String
patternString
;
/** one of MATCH / ONE / ANY */
private
int
[]
patternTypes
;
private
int
patternLength
;
...
...
@@ -47,6 +47,8 @@ public class CompareLike extends Condition {
private
boolean
ignoreCase
;
private
boolean
fastCompare
;
private
boolean
invalidPattern
;
/** indicates that we can shortcut the comparison and use startsWith */
private
boolean
shortcutToStartsWith
;
public
CompareLike
(
Database
db
,
Expression
left
,
Expression
right
,
Expression
escape
,
boolean
regexp
)
{
...
...
@@ -196,6 +198,8 @@ public class CompareLike extends Condition {
// column is not a varchar - can't use the index
return
;
}
// Get the MATCH prefix and see if we can create an index condition from
// that.
int
maxMatch
=
0
;
StringBuilder
buff
=
new
StringBuilder
();
while
(
maxMatch
<
patternLength
&&
patternTypes
[
maxMatch
]
==
MATCH
)
{
...
...
@@ -253,20 +257,15 @@ public class CompareLike extends Condition {
String
value
=
l
.
getString
();
boolean
result
;
if
(
regexp
)
{
// result = patternRegexp.matcher(value).matches();
result
=
patternRegexp
.
matcher
(
value
).
find
();
}
else
if
(
shortcutToStartsWith
)
{
result
=
value
.
regionMatches
(
ignoreCase
,
0
,
patternString
,
0
,
patternLength
-
1
);
}
else
{
result
=
compareAt
(
value
,
0
,
0
,
value
.
length
(),
patternChars
,
patternTypes
);
}
return
ValueBoolean
.
get
(
result
);
}
private
boolean
compare
(
char
[]
pattern
,
String
s
,
int
pi
,
int
si
)
{
return
pattern
[
pi
]
==
s
.
charAt
(
si
)
||
(!
fastCompare
&&
compareMode
.
equalsChars
(
patternString
,
pi
,
s
,
si
,
ignoreCase
));
}
private
boolean
compareAt
(
String
s
,
int
pi
,
int
si
,
int
sLen
,
char
[]
pattern
,
int
[]
types
)
{
for
(;
pi
<
patternLength
;
pi
++)
{
...
...
@@ -300,6 +299,12 @@ public class CompareLike extends Condition {
return
si
==
sLen
;
}
private
boolean
compare
(
char
[]
pattern
,
String
s
,
int
pi
,
int
si
)
{
return
pattern
[
pi
]
==
s
.
charAt
(
si
)
||
(!
fastCompare
&&
compareMode
.
equalsChars
(
patternString
,
pi
,
s
,
si
,
ignoreCase
));
}
/**
* Test if the value matches the pattern.
*
...
...
@@ -376,6 +381,17 @@ public class CompareLike extends Condition {
}
}
patternString
=
new
String
(
patternChars
,
0
,
patternLength
);
/* optimises the common case of LIKE 'foo%' */
if
(
compareMode
.
getName
().
equals
(
CompareMode
.
OFF
)
&&
patternLength
>
1
)
{
int
maxMatch
=
0
;
while
(
maxMatch
<
patternLength
&&
patternTypes
[
maxMatch
]
==
MATCH
)
{
maxMatch
++;
}
if
(
maxMatch
==
patternLength
-
1
&&
patternTypes
[
patternLength
-
1
]
==
ANY
)
{
shortcutToStartsWith
=
true
;
}
}
}
private
boolean
isFullMatch
()
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论