Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
cfde40ae
提交
cfde40ae
authored
4月 28, 2018
作者:
Evgenij Ryazanov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Rename some private fields in SortOrder and optimize code a bit
上级
bf06f2b4
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
21 行增加
和
10 行删除
+21
-10
SortOrder.java
h2/src/main/org/h2/result/SortOrder.java
+21
-10
没有找到文件。
h2/src/main/org/h2/result/SortOrder.java
浏览文件 @
cfde40ae
...
...
@@ -50,20 +50,31 @@ public class SortOrder implements Comparator<Value[]> {
public
static
final
int
NULLS_LAST
=
4
;
/**
* The default
sort order for NULL
.
* The default
comparison result for NULL, either 1 or -1
.
*/
private
static
final
int
DEFAULT_NULL_SORT
=
SysProperties
.
SORT_NULLS_HIGH
?
1
:
-
1
;
private
static
final
int
DEFAULT_NULL_SORT
;
/**
* The default
sort order bit for NULLs last
.
* The default
NULLs sort order bit for ASC indexes
.
*/
private
static
final
int
DEFAULT_
NULLS_LAST
=
SysProperties
.
SORT_NULLS_HIGH
?
NULLS_LAST
:
NULLS_FIRST
;
private
static
final
int
DEFAULT_
ASC_NULLS
;
/**
* The default
sort order bit for NULLs first
.
* The default
NULLs sort order bit for DESC indexes
.
*/
private
static
final
int
DEFAULT_NULLS_FIRST
=
SysProperties
.
SORT_NULLS_HIGH
?
NULLS_FIRST
:
NULLS_LAST
;
private
static
final
int
DEFAULT_DESC_NULLS
;
static
{
if
(
SysProperties
.
SORT_NULLS_HIGH
)
{
DEFAULT_NULL_SORT
=
1
;
DEFAULT_ASC_NULLS
=
NULLS_LAST
;
DEFAULT_DESC_NULLS
=
NULLS_FIRST
;
}
else
{
// default
DEFAULT_NULL_SORT
=
-
1
;
DEFAULT_ASC_NULLS
=
NULLS_FIRST
;
DEFAULT_DESC_NULLS
=
NULLS_LAST
;
}
}
private
final
Database
database
;
...
...
@@ -292,9 +303,9 @@ public class SortOrder implements Comparator<Value[]> {
* @param sortType sort type bit mask
* @return bit mask with either {@link #NULLS_FIRST} or {@link #NULLS_LAST} explicitly set.
*/
public
static
int
addExplicitNullPosition
(
final
int
sortType
)
{
if
((
sortType
&
NULLS_FIRST
)
!=
NULLS_FIRST
&&
(
sortType
&
NULLS_LAST
)
!=
NULLS_LAST
)
{
return
sortType
|
((
sortType
&
DESCENDING
)
==
ASCENDING
?
DEFAULT_NULLS_LAST
:
DEFAULT_NULLS_FIRST
);
public
static
int
addExplicitNullPosition
(
int
sortType
)
{
if
((
sortType
&
(
NULLS_FIRST
|
NULLS_LAST
))
==
0
)
{
return
sortType
|
((
sortType
&
DESCENDING
)
==
0
?
DEFAULT_ASC_NULLS
:
DEFAULT_DESC_NULLS
);
}
else
{
return
sortType
;
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论