Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
686895b1
提交
686895b1
authored
2月 09, 2017
作者:
Noel Grandin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
rename dataType to returnDataType
to make it more obvious
上级
45c24f18
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
11 行增加
和
11 行删除
+11
-11
Function.java
h2/src/main/org/h2/expression/Function.java
+10
-10
FunctionInfo.java
h2/src/main/org/h2/expression/FunctionInfo.java
+1
-1
没有找到文件。
h2/src/main/org/h2/expression/Function.java
浏览文件 @
686895b1
...
@@ -498,13 +498,13 @@ public class Function extends Expression implements FunctionCall {
...
@@ -498,13 +498,13 @@ public class Function extends Expression implements FunctionCall {
}
}
private
static
void
addFunction
(
String
name
,
int
type
,
int
parameterCount
,
private
static
void
addFunction
(
String
name
,
int
type
,
int
parameterCount
,
int
d
ataType
,
boolean
nullIfParameterIsNull
,
boolean
deterministic
,
int
returnD
ataType
,
boolean
nullIfParameterIsNull
,
boolean
deterministic
,
boolean
bufferResultSetToLocalTemp
)
{
boolean
bufferResultSetToLocalTemp
)
{
FunctionInfo
info
=
new
FunctionInfo
();
FunctionInfo
info
=
new
FunctionInfo
();
info
.
name
=
name
;
info
.
name
=
name
;
info
.
type
=
type
;
info
.
type
=
type
;
info
.
parameterCount
=
parameterCount
;
info
.
parameterCount
=
parameterCount
;
info
.
dataType
=
d
ataType
;
info
.
returnDataType
=
returnD
ataType
;
info
.
nullIfParameterIsNull
=
nullIfParameterIsNull
;
info
.
nullIfParameterIsNull
=
nullIfParameterIsNull
;
info
.
deterministic
=
deterministic
;
info
.
deterministic
=
deterministic
;
info
.
bufferResultSetToLocalTemp
=
bufferResultSetToLocalTemp
;
info
.
bufferResultSetToLocalTemp
=
bufferResultSetToLocalTemp
;
...
@@ -512,18 +512,18 @@ public class Function extends Expression implements FunctionCall {
...
@@ -512,18 +512,18 @@ public class Function extends Expression implements FunctionCall {
}
}
private
static
void
addFunctionNotDeterministic
(
String
name
,
int
type
,
private
static
void
addFunctionNotDeterministic
(
String
name
,
int
type
,
int
parameterCount
,
int
d
ataType
)
{
int
parameterCount
,
int
returnD
ataType
)
{
addFunction
(
name
,
type
,
parameterCount
,
d
ataType
,
true
,
false
,
true
);
addFunction
(
name
,
type
,
parameterCount
,
returnD
ataType
,
true
,
false
,
true
);
}
}
private
static
void
addFunction
(
String
name
,
int
type
,
int
parameterCount
,
private
static
void
addFunction
(
String
name
,
int
type
,
int
parameterCount
,
int
d
ataType
)
{
int
returnD
ataType
)
{
addFunction
(
name
,
type
,
parameterCount
,
d
ataType
,
true
,
true
,
true
);
addFunction
(
name
,
type
,
parameterCount
,
returnD
ataType
,
true
,
true
,
true
);
}
}
private
static
void
addFunctionWithNull
(
String
name
,
int
type
,
private
static
void
addFunctionWithNull
(
String
name
,
int
type
,
int
parameterCount
,
int
d
ataType
)
{
int
parameterCount
,
int
returnD
ataType
)
{
addFunction
(
name
,
type
,
parameterCount
,
d
ataType
,
false
,
true
,
true
);
addFunction
(
name
,
type
,
parameterCount
,
returnD
ataType
,
false
,
true
,
true
);
}
}
/**
/**
...
@@ -2470,7 +2470,7 @@ public class Function extends Expression implements FunctionCall {
...
@@ -2470,7 +2470,7 @@ public class Function extends Expression implements FunctionCall {
}
}
case
SUBSTRING:
case
SUBSTRING:
case
SUBSTR:
{
case
SUBSTR:
{
t
=
info
.
d
ataType
;
t
=
info
.
returnD
ataType
;
p
=
args
[
0
].
getPrecision
();
p
=
args
[
0
].
getPrecision
();
s
=
0
;
s
=
0
;
if
(
args
[
1
].
isConstant
())
{
if
(
args
[
1
].
isConstant
())
{
...
@@ -2487,7 +2487,7 @@ public class Function extends Expression implements FunctionCall {
...
@@ -2487,7 +2487,7 @@ public class Function extends Expression implements FunctionCall {
break
;
break
;
}
}
default
:
default
:
t
=
info
.
d
ataType
;
t
=
info
.
returnD
ataType
;
DataType
type
=
DataType
.
getDataType
(
t
);
DataType
type
=
DataType
.
getDataType
(
t
);
p
=
PRECISION_UNKNOWN
;
p
=
PRECISION_UNKNOWN
;
d
=
0
;
d
=
0
;
...
...
h2/src/main/org/h2/expression/FunctionInfo.java
浏览文件 @
686895b1
...
@@ -23,7 +23,7 @@ class FunctionInfo {
...
@@ -23,7 +23,7 @@ class FunctionInfo {
/**
/**
* The data type of the return value.
* The data type of the return value.
*/
*/
int
d
ataType
;
int
returnD
ataType
;
/**
/**
* The number of parameters.
* The number of parameters.
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论