Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
b7d25de6
提交
b7d25de6
authored
2月 10, 2013
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Issue 439: Utils.sortTopN does not handle single-element arrays.
上级
ecaf3d67
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
28 行增加
和
2 行删除
+28
-2
changelog.html
h2/src/docsrc/html/changelog.html
+1
-0
Utils.java
h2/src/main/org/h2/util/Utils.java
+3
-0
TestUtils.java
h2/src/test/org/h2/test/unit/TestUtils.java
+24
-2
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
b7d25de6
...
...
@@ -66,6 +66,7 @@ Change Log
</li><li>
MySQL compatibility: support for ALTER TABLE tableName MODIFY [COLUMN] columnName columnDef. Patch from Ville Koskela.
</li><li>
Issue 404: SHOW COLUMNS FROM tableName does not work with ALLOW_LITERALS=NUMBERS.
</li><li>
Throw an explicit error to make it clear we don't support the TRIGGER combination of SELECT and FOR EACH ROW.
</li><li>
Issue 439: Utils.sortTopN does not handle single-element arrays.
</li></ul>
<h2>
Version 1.3.170 (2012-11-30)
</h2>
...
...
h2/src/main/org/h2/util/Utils.java
浏览文件 @
b7d25de6
...
...
@@ -469,6 +469,9 @@ public class Utils {
if
(
low
>
end
||
high
<
start
||
(
low
>
start
&&
high
<
end
))
{
return
;
}
if
(
low
==
high
)
{
return
;
}
int
i
=
low
,
j
=
high
;
// use a random pivot to protect against
// the worst case order
...
...
h2/src/test/org/h2/test/unit/TestUtils.java
浏览文件 @
b7d25de6
...
...
@@ -16,6 +16,7 @@ import java.util.Date;
import
java.util.Random
;
import
org.h2.test.TestBase
;
import
org.h2.util.Utils
;
import
org.junit.Test
;
/**
* Tests reflection utilities.
...
...
@@ -36,13 +37,15 @@ public class TestUtils extends TestBase {
TestBase
.
createCaller
().
init
().
test
();
}
@Test
public
void
test
()
throws
Exception
{
testSortTopN
();
testSortTopNRandom
();
testWriteReadLong
();
testGetNonPrimitiveClass
();
testGetNonPrimitiveClass
();
testGetNonPrimitiveClass
();
testReflectionUtils
();
testSortTopN
();
}
private
void
testWriteReadLong
()
{
...
...
@@ -61,8 +64,27 @@ public class TestUtils extends TestBase {
assertEquals
(
x
,
y
);
}
}
private
void
testSortTopN
()
{
Comparator
<
Integer
>
comp
=
new
Comparator
<
Integer
>()
{
@Override
public
int
compare
(
Integer
o1
,
Integer
o2
)
{
return
o1
.
compareTo
(
o2
);
}
};
Integer
[]
arr
=
new
Integer
[]
{};
Utils
.
sortTopN
(
arr
,
0
,
5
,
comp
);
arr
=
new
Integer
[]
{
1
};
Utils
.
sortTopN
(
arr
,
0
,
5
,
comp
);
arr
=
new
Integer
[]
{
3
,
5
,
1
,
4
,
2
};
Utils
.
sortTopN
(
arr
,
0
,
2
,
comp
);
assertEquals
(
arr
[
0
].
intValue
(),
1
);
assertEquals
(
arr
[
1
].
intValue
(),
2
);
}
private
void
testSortTopNRandom
()
{
Random
rnd
=
new
Random
();
Comparator
<
Integer
>
comp
=
new
Comparator
<
Integer
>()
{
@Override
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论