Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
71317439
提交
71317439
authored
4月 12, 2014
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Re-implemented translate.
上级
a56021d5
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
29 行增加
和
31 行删除
+29
-31
Function.java
h2/src/main/org/h2/expression/Function.java
+29
-31
没有找到文件。
h2/src/main/org/h2/expression/Function.java
浏览文件 @
71317439
...
...
@@ -571,7 +571,7 @@ public class Function extends Expression implements FunctionCall {
}
private
static
strictfp
double
log10
(
double
value
)
{
return
round
m
agic
(
StrictMath
.
log
(
value
)
/
StrictMath
.
log
(
10
));
return
round
M
agic
(
StrictMath
.
log
(
value
)
/
StrictMath
.
log
(
10
));
}
@Override
...
...
@@ -648,7 +648,7 @@ public class Function extends Expression implements FunctionCall {
break
;
}
case
ROUNDMAGIC:
result
=
ValueDouble
.
get
(
round
m
agic
(
v0
.
getDouble
()));
result
=
ValueDouble
.
get
(
round
M
agic
(
v0
.
getDouble
()));
break
;
case
SIGN:
result
=
ValueInt
.
get
(
v0
.
getSignum
());
...
...
@@ -1920,41 +1920,39 @@ public class Function extends Expression implements FunctionCall {
return
e
;
}
/** This is the org.apache.commons.lang3.StringUtils
* #replaceChars(String, String, String) implementation
*/
private
static
String
translate
(
String
str
,
String
searchChars
,
String
replaceChars
)
{
if
(
str
==
null
||
str
.
length
()
==
0
||
searchChars
==
null
||
searchChars
.
length
()
==
0
)
{
return
str
;
}
if
(
replaceChars
==
null
)
{
// empty
replaceChars
=
""
;
}
boolean
modified
=
false
;
int
replaceCharsLength
=
replaceChars
.
length
();
int
strLength
=
str
.
length
();
StringBuilder
buf
=
new
StringBuilder
(
strLength
);
for
(
int
i
=
0
;
i
<
strLength
;
i
++)
{
char
ch
=
str
.
charAt
(
i
);
int
index
=
searchChars
.
indexOf
(
ch
);
private
static
String
translate
(
String
original
,
String
findChars
,
String
replaceChars
)
{
if
(
StringUtils
.
isNullOrEmpty
(
original
)
||
StringUtils
.
isNullOrEmpty
(
findChars
))
{
return
original
;
}
// if it stays null, then no replacements have been made
StringBuilder
buff
=
null
;
// if shorter than findChars, then characters are removed
// (if null, we don't access replaceChars at all)
int
replaceSize
=
replaceChars
==
null
?
0
:
replaceChars
.
length
();
for
(
int
i
=
0
,
size
=
original
.
length
();
i
<
size
;
i
++)
{
char
ch
=
original
.
charAt
(
i
);
int
index
=
findChars
.
indexOf
(
ch
);
if
(
index
>=
0
)
{
modified
=
true
;
if
(
index
<
replaceCharsLength
)
{
buf
.
append
(
replaceChars
.
charAt
(
index
));
if
(
buff
==
null
)
{
buff
=
new
StringBuilder
(
size
);
if
(
i
>
0
)
{
buff
.
append
(
original
.
substring
(
0
,
i
));
}
}
if
(
index
<
replaceSize
)
{
ch
=
replaceChars
.
charAt
(
index
);
}
}
else
{
buf
.
append
(
ch
);
}
if
(
buff
!=
null
)
{
buff
.
append
(
ch
);
}
if
(
modified
)
{
return
buf
.
toString
();
}
return
str
;
return
buff
==
null
?
original
:
buff
.
toString
()
;
}
private
static
double
round
m
agic
(
double
d
)
{
private
static
double
round
M
agic
(
double
d
)
{
if
((
d
<
0.0000000000001
)
&&
(
d
>
-
0.0000000000001
))
{
return
0.0
;
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论