Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
eaf1080a
提交
eaf1080a
authored
2月 22, 2019
作者:
thomasmueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Javadocs
上级
619092cb
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
20 行增加
和
1 行删除
+20
-1
SelectOrderBy.java
h2/src/main/org/h2/command/dml/SelectOrderBy.java
+5
-0
MVTempResult.java
h2/src/main/org/h2/mvstore/db/MVTempResult.java
+2
-0
WebServer.java
h2/src/main/org/h2/server/web/WebServer.java
+4
-1
Column.java
h2/src/main/org/h2/table/Column.java
+7
-0
dictionary.txt
h2/src/tools/org/h2/build/doc/dictionary.txt
+2
-0
没有找到文件。
h2/src/main/org/h2/command/dml/SelectOrderBy.java
浏览文件 @
eaf1080a
...
...
@@ -30,6 +30,11 @@ public class SelectOrderBy {
*/
public
int
sortType
;
/**
* Appends the order by expression to the specified builder.
*
* @param builder the string builder
*/
public
void
getSQL
(
StringBuilder
builder
)
{
if
(
expression
!=
null
)
{
builder
.
append
(
'='
);
...
...
h2/src/main/org/h2/mvstore/db/MVTempResult.java
浏览文件 @
eaf1080a
...
...
@@ -224,6 +224,8 @@ public abstract class MVTempResult implements ResultExternal {
/**
* If any value in the rows is a ValueEnum, apply custom type conversion.
*
* @param row the array of values (modified in-place if needed)
*/
final
void
fixEnum
(
Value
[]
row
)
{
for
(
int
i
=
0
,
l
=
expressions
.
length
;
i
<
l
;
i
++)
{
...
...
h2/src/main/org/h2/server/web/WebServer.java
浏览文件 @
eaf1080a
...
...
@@ -867,7 +867,10 @@ public class WebServer implements Service {
}
/**
* true if admin password not configure, or admin password correct.
* Check the admin password.
*
* @param the password to test
* @return true if admin password not configure, or admin password correct
*/
boolean
checkAdminPassword
(
String
password
)
{
if
(
adminPassword
==
null
)
{
...
...
h2/src/main/org/h2/table/Column.java
浏览文件 @
eaf1080a
...
...
@@ -292,6 +292,13 @@ public class Column {
return
rowId
?
name
:
Parser
.
quoteIdentifier
(
name
);
}
/**
* Appends the column name to the specified builder.
* The name is quoted, unless if this is a row id column.
*
* @param builder the string builder
* @return the specified string builder
*/
public
StringBuilder
getSQL
(
StringBuilder
builder
)
{
return
rowId
?
builder
.
append
(
name
)
:
Parser
.
quoteIdentifier
(
builder
,
name
);
}
...
...
h2/src/tools/org/h2/build/doc/dictionary.txt
浏览文件 @
eaf1080a
...
...
@@ -808,3 +808,5 @@ corrupts splitted disruption unintentional octets preconditions predicates subq
preserves masking holder unboxing avert iae transformed subtle reevaluate exclusions subclause ftbl rgr
presorted inclusion contexts aax mwd percentile cont interpolate mwa hypothetical regproc childed listagg foreground
isodow isoyear psql
waiters
\ No newline at end of file
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论