Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
2609036a
提交
2609036a
authored
12月 11, 2009
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
LIKE: any letter is now allowed after the escape character.
上级
f4152def
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
31 行增加
和
8 行删除
+31
-8
CompareLike.java
h2/src/main/org/h2/expression/CompareLike.java
+20
-8
testSimple.in.txt
h2/src/test/org/h2/test/testSimple.in.txt
+11
-0
没有找到文件。
h2/src/main/org/h2/expression/CompareLike.java
浏览文件 @
2609036a
...
...
@@ -17,7 +17,6 @@ import org.h2.index.IndexCondition;
import
org.h2.message.Message
;
import
org.h2.table.ColumnResolver
;
import
org.h2.table.TableFilter
;
import
org.h2.util.StringUtils
;
import
org.h2.value.CompareMode
;
import
org.h2.value.Value
;
import
org.h2.value.ValueBoolean
;
...
...
@@ -45,6 +44,7 @@ public class CompareLike extends Condition {
private
int
patternLength
;
private
boolean
ignoreCase
;
private
boolean
fastCompare
;
private
boolean
invalidPattern
;
public
CompareLike
(
CompareMode
compareMode
,
Expression
left
,
Expression
right
,
Expression
escape
,
boolean
regexp
)
{
this
.
compareMode
=
compareMode
;
...
...
@@ -98,6 +98,9 @@ public class CompareLike extends Condition {
}
String
p
=
r
.
getString
();
initPattern
(
p
,
getEscapeChar
(
e
));
if
(
invalidPattern
)
{
return
ValueExpression
.
getNull
();
}
if
(
"%"
.
equals
(
p
))
{
// optimization for X LIKE '%': convert to X IS NOT NULL
return
new
Comparison
(
session
,
Comparison
.
IS_NOT_NULL
,
left
,
null
).
optimize
(
session
);
...
...
@@ -113,7 +116,7 @@ public class CompareLike extends Condition {
return
this
;
}
private
Character
getEscapeChar
(
Value
e
)
{
private
Character
getEscapeChar
(
Value
e
)
throws
SQLException
{
if
(
e
==
null
)
{
return
SysProperties
.
DEFAULT_ESCAPE_CHAR
;
}
...
...
@@ -123,6 +126,8 @@ public class CompareLike extends Condition {
esc
=
SysProperties
.
DEFAULT_ESCAPE_CHAR
;
}
else
if
(
es
.
length
()
==
0
)
{
esc
=
null
;
}
else
if
(
es
.
length
()
>
1
)
{
throw
Message
.
getSQLException
(
ErrorCode
.
LIKE_ESCAPE_ERROR_1
,
es
);
}
else
{
esc
=
es
.
charAt
(
0
);
}
...
...
@@ -159,6 +164,9 @@ public class CompareLike extends Condition {
Message
.
throwInternalError
();
}
initPattern
(
p
,
getEscapeChar
(
e
));
if
(
invalidPattern
)
{
return
;
}
if
(
patternLength
<=
0
||
types
[
0
]
!=
MATCH
)
{
// can't use an index
return
;
...
...
@@ -178,8 +186,8 @@ public class CompareLike extends Condition {
filter
.
addIndexCondition
(
IndexCondition
.
get
(
Comparison
.
EQUAL
,
l
,
ValueExpression
.
get
(
ValueString
.
get
(
begin
))));
}
else
{
// TODO check if this is correct according to Unicode rules
(code
// points)
// TODO check if this is correct according to Unicode rules
//
(code
points)
String
end
;
if
(
begin
.
length
()
>
0
)
{
filter
.
addIndexCondition
(
IndexCondition
.
get
(
Comparison
.
BIGGER_EQUAL
,
l
,
ValueExpression
.
get
(
ValueString
...
...
@@ -216,6 +224,9 @@ public class CompareLike extends Condition {
}
initPattern
(
p
,
getEscapeChar
(
e
));
}
if
(
invalidPattern
)
{
return
ValueNull
.
INSTANCE
;
}
String
value
=
l
.
getString
();
boolean
result
;
if
(
regexp
)
{
...
...
@@ -272,6 +283,9 @@ public class CompareLike extends Condition {
*/
public
boolean
test
(
String
testPattern
,
String
value
,
char
escapeChar
)
throws
SQLException
{
initPattern
(
testPattern
,
escapeChar
);
if
(
invalidPattern
)
{
return
false
;
}
return
compareAt
(
value
,
0
,
0
,
value
.
length
(),
pattern
,
types
);
}
...
...
@@ -307,12 +321,10 @@ public class CompareLike extends Condition {
int
type
;
if
(
escape
!=
null
&&
escape
==
c
)
{
if
(
i
>=
len
-
1
)
{
throw
Message
.
getSQLException
(
ErrorCode
.
LIKE_ESCAPE_ERROR_1
,
StringUtils
.
addAsterisk
(
p
,
i
));
invalidPattern
=
true
;
return
;
}
c
=
p
.
charAt
(++
i
);
if
(
c
!=
'_'
&&
c
!=
'%'
&&
c
!=
escape
)
{
throw
Message
.
getSQLException
(
ErrorCode
.
LIKE_ESCAPE_ERROR_1
,
StringUtils
.
addAsterisk
(
p
,
i
));
}
type
=
MATCH
;
lastAny
=
false
;
}
else
if
(
c
==
'%'
)
{
...
...
h2/src/test/org/h2/test/testSimple.in.txt
浏览文件 @
2609036a
create table test(name varchar(255)) as select 'Hello+World+';
select count(*) from test where name like 'Hello++World++' escape '+';
> 1;
select count(*) from test where name like '+H+e+l+l+o++World++' escape '+';
> 1;
select count(*) from test where name like 'Hello+World++' escape '+';
> 0;
select count(*) from test where name like 'Hello++World+' escape '+';
> 0;
drop table test;
select count(*) from system_range(1, 1);
> 1;
select count(*) from system_range(1, -1);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论