Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
5b022f39
提交
5b022f39
authored
8月 11, 2018
作者:
Evgenij Ryazanov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Remove dependency between Mode and Function
上级
2a7c3604
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
85 行增加
和
18 行删除
+85
-18
Mode.java
h2/src/main/org/h2/engine/Mode.java
+0
-11
Function.java
h2/src/main/org/h2/expression/Function.java
+12
-7
FunctionsBase.java
h2/src/main/org/h2/mode/FunctionsBase.java
+32
-0
FunctionsMSSQLServer.java
h2/src/main/org/h2/mode/FunctionsMSSQLServer.java
+41
-0
没有找到文件。
h2/src/main/org/h2/engine/Mode.java
浏览文件 @
5b022f39
...
...
@@ -10,8 +10,6 @@ import java.util.Collections;
import
java.util.HashMap
;
import
java.util.Set
;
import
java.util.regex.Pattern
;
import
org.h2.expression.Function
;
import
org.h2.expression.FunctionInfo
;
import
org.h2.util.StringUtils
;
import
org.h2.value.DataType
;
import
org.h2.value.Value
;
...
...
@@ -206,8 +204,6 @@ public class Mode {
*/
public
HashMap
<
String
,
DataType
>
typeByNameMap
=
new
HashMap
<>();
public
HashMap
<
String
,
FunctionInfo
>
functionAliases
;
private
final
String
name
;
private
final
ModeEnum
modeEnum
;
...
...
@@ -273,9 +269,6 @@ public class Mode {
dt
.
sqlType
=
Types
.
NUMERIC
;
dt
.
name
=
"SMALLMONEY"
;
mode
.
typeByNameMap
.
put
(
"SMALLMONEY"
,
dt
);
HashMap
<
String
,
FunctionInfo
>
functions
=
new
HashMap
<>();
copyFunction
(
functions
,
"RANDOM_UUID"
,
"NEWID"
);
mode
.
functionAliases
=
functions
;
add
(
mode
);
mode
=
new
Mode
(
ModeEnum
.
MySQL
);
...
...
@@ -349,10 +342,6 @@ public class Mode {
add
(
mode
);
}
static
void
copyFunction
(
HashMap
<
String
,
FunctionInfo
>
functions
,
String
stdName
,
String
newName
)
{
functions
.
put
(
newName
,
new
FunctionInfo
(
Function
.
getFunctionInfo
(
stdName
),
newName
));
}
private
Mode
(
ModeEnum
modeEnum
)
{
this
.
name
=
modeEnum
.
name
();
this
.
modeEnum
=
modeEnum
;
...
...
h2/src/main/org/h2/expression/Function.java
浏览文件 @
5b022f39
...
...
@@ -28,6 +28,7 @@ import org.h2.engine.Database;
import
org.h2.engine.Mode
;
import
org.h2.engine.Session
;
import
org.h2.message.DbException
;
import
org.h2.mode.FunctionsMSSQLServer
;
import
org.h2.schema.Schema
;
import
org.h2.schema.Sequence
;
import
org.h2.security.BlockCipher
;
...
...
@@ -474,7 +475,13 @@ public class Function extends Expression implements FunctionCall {
addFunction
(
"VALUES"
,
VALUES
,
1
,
Value
.
NULL
,
false
,
true
,
false
);
}
protected
Function
(
Database
database
,
FunctionInfo
info
)
{
/**
* Creates a new instance of function.
*
* @param database database
* @param info function information
*/
public
Function
(
Database
database
,
FunctionInfo
info
)
{
this
.
database
=
database
;
this
.
info
=
info
;
if
(
info
.
parameterCount
==
VAR_ARGS
)
{
...
...
@@ -521,12 +528,10 @@ public class Function extends Expression implements FunctionCall {
}
FunctionInfo
info
=
FUNCTIONS
.
get
(
name
);
if
(
info
==
null
)
{
HashMap
<
String
,
FunctionInfo
>
aliases
=
database
.
getMode
().
functionAliases
;
if
(
aliases
==
null
)
{
return
null
;
}
info
=
aliases
.
get
(
name
);
if
(
info
==
null
)
{
switch
(
database
.
getMode
().
getEnum
())
{
case
MSSQLServer:
return
FunctionsMSSQLServer
.
getFunction
(
database
,
name
);
default
:
return
null
;
}
}
...
...
h2/src/main/org/h2/mode/FunctionsBase.java
0 → 100644
浏览文件 @
5b022f39
/*
* Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0,
* and the EPL 1.0 (http://h2database.com/html/license.html).
* Initial Developer: H2 Group
*/
package
org
.
h2
.
mode
;
import
java.util.HashMap
;
import
org.h2.expression.Function
;
import
org.h2.expression.FunctionInfo
;
/**
* Base class for mode-specific functions.
*/
abstract
class
FunctionsBase
{
/**
* Copy a standard function to a mode functions with a different name.
*
* @param functions
* mode functions
* @param stdName
* the name of the standard function
* @param newName
* the name of the mode-specific function
*/
static
void
copyFunction
(
HashMap
<
String
,
FunctionInfo
>
functions
,
String
stdName
,
String
newName
)
{
functions
.
put
(
newName
,
new
FunctionInfo
(
Function
.
getFunctionInfo
(
stdName
),
newName
));
}
}
h2/src/main/org/h2/mode/FunctionsMSSQLServer.java
0 → 100644
浏览文件 @
5b022f39
/*
* Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0,
* and the EPL 1.0 (http://h2database.com/html/license.html).
* Initial Developer: H2 Group
*/
package
org
.
h2
.
mode
;
import
java.util.HashMap
;
import
org.h2.engine.Database
;
import
org.h2.expression.Function
;
import
org.h2.expression.FunctionInfo
;
/**
* Functions for {@link org.h2.engine.Mode.ModeEnum#MSSQLServer} compatibility
* mode.
*/
public
final
class
FunctionsMSSQLServer
extends
FunctionsBase
{
private
static
final
HashMap
<
String
,
FunctionInfo
>
FUNCTIONS
=
new
HashMap
<>();
static
{
copyFunction
(
FUNCTIONS
,
"RANDOM_UUID"
,
"NEWID"
);
}
/**
* Returns mode-specific function for a given name, or {@code null}.
*
* @param database
* the database
* @param upperName
* the upper-case name of a function
* @return the function with specified name or {@code null}
*/
public
static
Function
getFunction
(
Database
database
,
String
upperName
)
{
FunctionInfo
info
=
FUNCTIONS
.
get
(
upperName
);
return
info
!=
null
?
new
Function
(
database
,
info
)
:
null
;
}
private
FunctionsMSSQLServer
()
{
}
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论