Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
aacd5d9c
提交
aacd5d9c
authored
11月 10, 2018
作者:
Evgenij Ryazanov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Standard no-arg datetime value functions don't have parentheses
上级
4be14cbf
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
108 行增加
和
90 行删除
+108
-90
help.csv
h2/src/docsrc/help/help.csv
+12
-8
Function.java
h2/src/main/org/h2/expression/Function.java
+77
-73
FunctionInfo.java
h2/src/main/org/h2/expression/FunctionInfo.java
+12
-2
FunctionsMySQL.java
h2/src/main/org/h2/mode/FunctionsMySQL.java
+3
-3
default-and-on_update.sql
h2/src/test/org/h2/test/scripts/default-and-on_update.sql
+4
-4
没有找到文件。
h2/src/docsrc/help/help.csv
浏览文件 @
aacd5d9c
...
@@ -4493,17 +4493,17 @@ CALL TRANSLATE('Hello world', 'eo', 'EO')
...
@@ -4493,17 +4493,17 @@ CALL TRANSLATE('Hello world', 'eo', 'EO')
"
"
"Functions (Time and Date)","CURRENT_DATE","
"Functions (Time and Date)","CURRENT_DATE","
{ CURRENT_DATE
[ () ]
| CURDATE() | SYSDATE | TODAY }
{ CURRENT_DATE | CURDATE() | SYSDATE | TODAY }
","
","
Returns the current date.
Returns the current date.
These methods always return the same value within a transaction (default)
These methods always return the same value within a transaction (default)
or within a command depending on database mode.
or within a command depending on database mode.
","
","
CURRENT_DATE
()
CURRENT_DATE
"
"
"Functions (Time and Date)","CURRENT_TIME","
"Functions (Time and Date)","CURRENT_TIME","
{ CURRENT_TIME [ (
[ int ] ) ] | LOCALTIME [ ( [ int ] ) ] | CURTIME(
) }
{ CURRENT_TIME [ (
int) ] | LOCALTIME [ (int) ] | CURTIME([ int ]
) }
","
","
Returns the current time.
Returns the current time.
If fractional seconds precision is specified it should be from 0 to 9, 0 is default.
If fractional seconds precision is specified it should be from 0 to 9, 0 is default.
...
@@ -4513,11 +4513,13 @@ Higher precision is not available before Java 9.
...
@@ -4513,11 +4513,13 @@ Higher precision is not available before Java 9.
These methods always return the same value within a transaction (default)
These methods always return the same value within a transaction (default)
or within a command depending on database mode.
or within a command depending on database mode.
","
","
CURRENT_TIME()
CURRENT_TIME
LOCALTIME
LOCALTIME(9)
"
"
"Functions (Time and Date)","CURRENT_TIMESTAMP","
"Functions (Time and Date)","CURRENT_TIMESTAMP","
CURRENT_TIMESTAMP [ (
[ int ]
) ]
CURRENT_TIMESTAMP [ (
int
) ]
","
","
Returns the current timestamp with time zone.
Returns the current timestamp with time zone.
Time zone offset is set to a current time zone offset
Time zone offset is set to a current time zone offset
...
@@ -4528,11 +4530,12 @@ Higher precision is not available before Java 9.
...
@@ -4528,11 +4530,12 @@ Higher precision is not available before Java 9.
This method always returns the same value within a transaction (default)
This method always returns the same value within a transaction (default)
or within a command depending on database mode.
or within a command depending on database mode.
","
","
CURRENT_TIMESTAMP()
CURRENT_TIMESTAMP
CURRENT_TIMESTAMP(9)
"
"
"Functions (Time and Date)","LOCALTIMESTAMP","
"Functions (Time and Date)","LOCALTIMESTAMP","
{ LOCALTIMESTAMP [ (
[ int ]
) ] | NOW( [ int ] ) }
{ LOCALTIMESTAMP [ (
int
) ] | NOW( [ int ] ) }
","
","
Returns the current timestamp.
Returns the current timestamp.
If fractional seconds precision is specified it should be from 0 to 9, 6 is default.
If fractional seconds precision is specified it should be from 0 to 9, 6 is default.
...
@@ -4542,7 +4545,8 @@ Higher precision is not available before Java 9.
...
@@ -4542,7 +4545,8 @@ Higher precision is not available before Java 9.
These methods always return the same value within a transaction (default)
These methods always return the same value within a transaction (default)
or within a command depending on database mode.
or within a command depending on database mode.
","
","
LOCALTIMESTAMP()
LOCALTIMESTAMP
LOCALTIMESTAMP(9)
"
"
"Functions (Time and Date)","DATEADD","
"Functions (Time and Date)","DATEADD","
...
...
h2/src/main/org/h2/expression/Function.java
浏览文件 @
aacd5d9c
差异被折叠。
点击展开。
h2/src/main/org/h2/expression/FunctionInfo.java
浏览文件 @
aacd5d9c
...
@@ -45,6 +45,11 @@ public final class FunctionInfo {
...
@@ -45,6 +45,11 @@ public final class FunctionInfo {
*/
*/
final
boolean
bufferResultSetToLocalTemp
;
final
boolean
bufferResultSetToLocalTemp
;
/**
* Should the no-arg function require parentheses.
*/
final
boolean
requireParentheses
;
/**
/**
* Creates new instance of built-in function information.
* Creates new instance of built-in function information.
*
*
...
@@ -65,9 +70,11 @@ public final class FunctionInfo {
...
@@ -65,9 +70,11 @@ public final class FunctionInfo {
* @param bufferResultSetToLocalTemp
* @param bufferResultSetToLocalTemp
* should the return value ResultSet be buffered in a local
* should the return value ResultSet be buffered in a local
* temporary file?
* temporary file?
* @param requireParentheses
* should the no-arg function require parentheses
*/
*/
public
FunctionInfo
(
String
name
,
int
type
,
int
parameterCount
,
int
returnDataType
,
boolean
nullIfParameterIsNull
,
public
FunctionInfo
(
String
name
,
int
type
,
int
parameterCount
,
int
returnDataType
,
boolean
nullIfParameterIsNull
,
boolean
deterministic
,
boolean
bufferResultSetToLocalTemp
)
{
boolean
deterministic
,
boolean
bufferResultSetToLocalTemp
,
boolean
requireParentheses
)
{
this
.
name
=
name
;
this
.
name
=
name
;
this
.
type
=
type
;
this
.
type
=
type
;
this
.
parameterCount
=
parameterCount
;
this
.
parameterCount
=
parameterCount
;
...
@@ -75,10 +82,12 @@ public final class FunctionInfo {
...
@@ -75,10 +82,12 @@ public final class FunctionInfo {
this
.
nullIfParameterIsNull
=
nullIfParameterIsNull
;
this
.
nullIfParameterIsNull
=
nullIfParameterIsNull
;
this
.
deterministic
=
deterministic
;
this
.
deterministic
=
deterministic
;
this
.
bufferResultSetToLocalTemp
=
bufferResultSetToLocalTemp
;
this
.
bufferResultSetToLocalTemp
=
bufferResultSetToLocalTemp
;
this
.
requireParentheses
=
requireParentheses
;
}
}
/**
/**
* Creates a copy of built-in function information with a different name.
* Creates a copy of built-in function information with a different name. A
* copy will require parentheses.
*
*
* @param source
* @param source
* the source information
* the source information
...
@@ -93,6 +102,7 @@ public final class FunctionInfo {
...
@@ -93,6 +102,7 @@ public final class FunctionInfo {
nullIfParameterIsNull
=
source
.
nullIfParameterIsNull
;
nullIfParameterIsNull
=
source
.
nullIfParameterIsNull
;
deterministic
=
source
.
deterministic
;
deterministic
=
source
.
deterministic
;
bufferResultSetToLocalTemp
=
source
.
bufferResultSetToLocalTemp
;
bufferResultSetToLocalTemp
=
source
.
bufferResultSetToLocalTemp
;
requireParentheses
=
true
;
}
}
}
}
h2/src/main/org/h2/mode/FunctionsMySQL.java
浏览文件 @
aacd5d9c
...
@@ -38,11 +38,11 @@ public class FunctionsMySQL extends FunctionsBase {
...
@@ -38,11 +38,11 @@ public class FunctionsMySQL extends FunctionsBase {
static
{
static
{
FUNCTIONS
.
put
(
"UNIX_TIMESTAMP"
,
new
FunctionInfo
(
"UNIX_TIMESTAMP"
,
UNIX_TIMESTAMP
,
FUNCTIONS
.
put
(
"UNIX_TIMESTAMP"
,
new
FunctionInfo
(
"UNIX_TIMESTAMP"
,
UNIX_TIMESTAMP
,
VAR_ARGS
,
Value
.
INT
,
false
,
false
,
false
));
VAR_ARGS
,
Value
.
INT
,
false
,
false
,
false
,
true
));
FUNCTIONS
.
put
(
"FROM_UNIXTIME"
,
new
FunctionInfo
(
"FROM_UNIXTIME"
,
FROM_UNIXTIME
,
FUNCTIONS
.
put
(
"FROM_UNIXTIME"
,
new
FunctionInfo
(
"FROM_UNIXTIME"
,
FROM_UNIXTIME
,
VAR_ARGS
,
Value
.
STRING
,
false
,
true
,
false
));
VAR_ARGS
,
Value
.
STRING
,
false
,
true
,
false
,
true
));
FUNCTIONS
.
put
(
"DATE"
,
new
FunctionInfo
(
"DATE"
,
DATE
,
FUNCTIONS
.
put
(
"DATE"
,
new
FunctionInfo
(
"DATE"
,
DATE
,
1
,
Value
.
DATE
,
false
,
true
,
false
));
1
,
Value
.
DATE
,
false
,
true
,
false
,
true
));
}
}
/**
/**
...
...
h2/src/test/org/h2/test/scripts/default-and-on_update.sql
浏览文件 @
aacd5d9c
...
@@ -88,10 +88,10 @@ ALTER TABLE TEST ALTER COLUMN V SET ON UPDATE NULL;
...
@@ -88,10 +88,10 @@ ALTER TABLE TEST ALTER COLUMN V SET ON UPDATE NULL;
SELECT
COLUMN_NAME
,
COLUMN_DEFAULT
,
COLUMN_ON_UPDATE
FROM
INFORMATION_SCHEMA
.
COLUMNS
WHERE
TABLE_NAME
=
'TEST'
ORDER
BY
COLUMN_NAME
;
SELECT
COLUMN_NAME
,
COLUMN_DEFAULT
,
COLUMN_ON_UPDATE
FROM
INFORMATION_SCHEMA
.
COLUMNS
WHERE
TABLE_NAME
=
'TEST'
ORDER
BY
COLUMN_NAME
;
>
COLUMN_NAME
COLUMN_DEFAULT
COLUMN_ON_UPDATE
>
COLUMN_NAME
COLUMN_DEFAULT
COLUMN_ON_UPDATE
>
----------- --------------------------- -----------------
--
>
----------- --------------------------- -----------------
>
ID
null
null
>
ID
null
null
>
V
(
NEXT
VALUE
FOR
PUBLIC
.
SEQ
)
NULL
>
V
(
NEXT
VALUE
FOR
PUBLIC
.
SEQ
)
NULL
>
V2
null
CURRENT_TIMESTAMP
()
>
V2
null
CURRENT_TIMESTAMP
>
rows
(
ordered
):
3
>
rows
(
ordered
):
3
ALTER
TABLE
TEST
ALTER
COLUMN
V
DROP
ON
UPDATE
;
ALTER
TABLE
TEST
ALTER
COLUMN
V
DROP
ON
UPDATE
;
...
@@ -99,10 +99,10 @@ ALTER TABLE TEST ALTER COLUMN V DROP ON UPDATE;
...
@@ -99,10 +99,10 @@ ALTER TABLE TEST ALTER COLUMN V DROP ON UPDATE;
SELECT
COLUMN_NAME
,
COLUMN_DEFAULT
,
COLUMN_ON_UPDATE
FROM
INFORMATION_SCHEMA
.
COLUMNS
WHERE
TABLE_NAME
=
'TEST'
ORDER
BY
COLUMN_NAME
;
SELECT
COLUMN_NAME
,
COLUMN_DEFAULT
,
COLUMN_ON_UPDATE
FROM
INFORMATION_SCHEMA
.
COLUMNS
WHERE
TABLE_NAME
=
'TEST'
ORDER
BY
COLUMN_NAME
;
>
COLUMN_NAME
COLUMN_DEFAULT
COLUMN_ON_UPDATE
>
COLUMN_NAME
COLUMN_DEFAULT
COLUMN_ON_UPDATE
>
----------- --------------------------- -----------------
--
>
----------- --------------------------- -----------------
>
ID
null
null
>
ID
null
null
>
V
(
NEXT
VALUE
FOR
PUBLIC
.
SEQ
)
null
>
V
(
NEXT
VALUE
FOR
PUBLIC
.
SEQ
)
null
>
V2
null
CURRENT_TIMESTAMP
()
>
V2
null
CURRENT_TIMESTAMP
>
rows
(
ordered
):
3
>
rows
(
ordered
):
3
DROP
TABLE
TEST
;
DROP
TABLE
TEST
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论