Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
d29582d7
Unverified
提交
d29582d7
authored
11月 12, 2018
作者:
Evgenij Ryazanov
提交者:
GitHub
11月 12, 2018
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #1545 from katzyn/datetime
Export datetime value functions to SQL using standard syntax
上级
b824b78d
28ac20dd
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
123 行增加
和
94 行删除
+123
-94
help.csv
h2/src/docsrc/help/help.csv
+22
-11
advanced.html
h2/src/docsrc/html/advanced.html
+1
-1
changelog.html
h2/src/docsrc/html/changelog.html
+4
-0
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
浏览文件 @
d29582d7
...
...
@@ -19,7 +19,7 @@ FROM tableExpression [,...] [ WHERE expression ]
","
Selects data from a table or multiple tables.
GROUP BY groups the the result by the given expression(s).
HAVING filter rows after grouping.
HAVING filter
s
rows after grouping.
ORDER BY sorts the result by the given column(s) or expression(s).
UNION combines the result of this query with the results of another query.
...
...
@@ -2975,9 +2975,12 @@ If fractional seconds precision is specified it should be from 0 to 9, 0 is defa
Mapped to ""java.sql.Time"". When converted to a ""java.sql.Date"", the date is set to ""1970-01-01"".
""java.time.LocalTime"" is also supported on Java 8 and later versions.
Resolution of ""java.sql.Time"" is limited to milliseconds, use ""String"" or ""java.time.LocalTime"" if you need nanosecond resolution.
Use ""java.time.LocalTime"" or ""String"" instead of ""java.sql.Time"" when non-zero precision is needed.
Cast from higher fractional seconds precision to lower fractional seconds precision performs round half up;
if result of rounding is higher than maximum supported value 23:59:59.999999999 it is saturated to 23:59:59.999999999.
","
TIME
TIME(9)
"
"Data Types","DATE Type","
...
...
@@ -3003,8 +3006,10 @@ Fractional seconds precision of SMALLDATETIME is always 0 and cannot be specifie
Mapped to ""java.sql.Timestamp"" (""java.util.Date"" may be used too).
""java.time.LocalDateTime"" is also supported on Java 8 and later versions.
Cast from higher fractional seconds precision to lower fractional seconds precision performs round half up.
","
TIMESTAMP
TIMESTAMP(9)
"
"Data Types","TIMESTAMP WITH TIME ZONE Type","
...
...
@@ -3021,8 +3026,10 @@ Values of this data type are compared by UTC values. It means that ""2010-01-01
Conversion to ""TIMESTAMP"" uses time zone offset to get UTC time and converts it to local time using the system time zone.
Conversion from ""TIMESTAMP"" does the same operations in reverse and sets time zone offset to offset of the system time zone.
Cast from higher fractional seconds precision to lower fractional seconds precision performs round half up.
","
TIMESTAMP WITH TIME ZONE
TIMESTAMP(9) WITH TIME ZONE
"
"Data Types","BINARY Type","
...
...
@@ -4493,17 +4500,17 @@ CALL TRANSLATE('Hello world', 'eo', 'EO')
"
"Functions (Time and Date)","CURRENT_DATE","
{ CURRENT_DATE
[ () ]
| CURDATE() | SYSDATE | TODAY }
{ CURRENT_DATE | CURDATE() | SYSDATE | TODAY }
","
Returns the current date.
These methods always return the same value within a transaction (default)
or within a command depending on database mode.
","
CURRENT_DATE
()
CURRENT_DATE
"
"Functions (Time and Date)","CURRENT_TIME","
{ CURRENT_TIME [ (
[ int ] ) ] | LOCALTIME [ ( [ int ] ) ] | CURTIME(
) }
{ CURRENT_TIME [ (
int) ] | LOCALTIME [ (int) ] | CURTIME([ int ]
) }
","
Returns the current time.
If fractional seconds precision is specified it should be from 0 to 9, 0 is default.
...
...
@@ -4513,14 +4520,16 @@ Higher precision is not available before Java 9.
These methods always return the same value within a transaction (default)
or within a command depending on database mode.
","
CURRENT_TIME()
CURRENT_TIME
LOCALTIME
LOCALTIME(9)
"
"Functions (Time and Date)","CURRENT_TIMESTAMP","
CURRENT_TIMESTAMP [ (
[ int ]
) ]
CURRENT_TIMESTAMP [ (
int
) ]
","
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
.
If fractional seconds precision is specified it should be from 0 to 9, 6 is default.
The specified value can be used only to limit precision of a result.
The actual maximum available precision depends on operating system and JVM and can be 3 (milliseconds) or higher.
...
...
@@ -4528,11 +4537,12 @@ Higher precision is not available before Java 9.
This method always returns the same value within a transaction (default)
or within a command depending on database mode.
","
CURRENT_TIMESTAMP()
CURRENT_TIMESTAMP
CURRENT_TIMESTAMP(9)
"
"Functions (Time and Date)","LOCALTIMESTAMP","
{ LOCALTIMESTAMP [ (
[ int ]
) ] | NOW( [ int ] ) }
{ LOCALTIMESTAMP [ (
int
) ] | NOW( [ int ] ) }
","
Returns the current timestamp.
If fractional seconds precision is specified it should be from 0 to 9, 6 is default.
...
...
@@ -4542,7 +4552,8 @@ Higher precision is not available before Java 9.
These methods always return the same value within a transaction (default)
or within a command depending on database mode.
","
LOCALTIMESTAMP()
LOCALTIMESTAMP
LOCALTIMESTAMP(9)
"
"Functions (Time and Date)","DATEADD","
...
...
h2/src/docsrc/html/advanced.html
浏览文件 @
d29582d7
...
...
@@ -482,7 +482,7 @@ PRIMARY, ROWNUM, SELECT, SYSDATE, SYSTIME, SYSTIMESTAMP, TODAY, TOP, TRUE, UNION
WINDOW, WITH
</code>
</p><p>
Certain words of this list are keywords because they are functions that can be used without '()'
for compatibility
,
Certain words of this list are keywords because they are functions that can be used without '()',
for example
<code>
CURRENT_TIMESTAMP
</code>
.
</p>
...
...
h2/src/docsrc/html/changelog.html
浏览文件 @
d29582d7
...
...
@@ -21,6 +21,10 @@ Change Log
<h2>
Next Version (unreleased)
</h2>
<ul>
<li>
PR #1545: Export datetime value functions to SQL using standard syntax
</li>
<li>
Issue #1371: NPE in CacheLRU
</li>
<li>
Issue #1534: Typo in message
</li>
<li>
Issue #1527: Parser performance: Excessive use of regular expressions to validate column names
...
...
h2/src/main/org/h2/expression/Function.java
浏览文件 @
d29582d7
差异被折叠。
点击展开。
h2/src/main/org/h2/expression/FunctionInfo.java
浏览文件 @
d29582d7
...
...
@@ -45,6 +45,11 @@ public final class FunctionInfo {
*/
final
boolean
bufferResultSetToLocalTemp
;
/**
* Should the no-arg function require parentheses.
*/
final
boolean
requireParentheses
;
/**
* Creates new instance of built-in function information.
*
...
...
@@ -65,9 +70,11 @@ public final class FunctionInfo {
* @param bufferResultSetToLocalTemp
* should the return value ResultSet be buffered in a local
* temporary file?
* @param requireParentheses
* should the no-arg function require parentheses
*/
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
.
type
=
type
;
this
.
parameterCount
=
parameterCount
;
...
...
@@ -75,10 +82,12 @@ public final class FunctionInfo {
this
.
nullIfParameterIsNull
=
nullIfParameterIsNull
;
this
.
deterministic
=
deterministic
;
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
* the source information
...
...
@@ -93,6 +102,7 @@ public final class FunctionInfo {
nullIfParameterIsNull
=
source
.
nullIfParameterIsNull
;
deterministic
=
source
.
deterministic
;
bufferResultSetToLocalTemp
=
source
.
bufferResultSetToLocalTemp
;
requireParentheses
=
true
;
}
}
h2/src/main/org/h2/mode/FunctionsMySQL.java
浏览文件 @
d29582d7
...
...
@@ -38,11 +38,11 @@ public class FunctionsMySQL extends FunctionsBase {
static
{
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
,
VAR_ARGS
,
Value
.
STRING
,
false
,
true
,
false
));
VAR_ARGS
,
Value
.
STRING
,
false
,
true
,
false
,
true
));
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
浏览文件 @
d29582d7
...
...
@@ -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
;
>
COLUMN_NAME
COLUMN_DEFAULT
COLUMN_ON_UPDATE
>
----------- --------------------------- -----------------
--
>
----------- --------------------------- -----------------
>
ID
null
null
>
V
(
NEXT
VALUE
FOR
PUBLIC
.
SEQ
)
NULL
>
V2
null
CURRENT_TIMESTAMP
()
>
V2
null
CURRENT_TIMESTAMP
>
rows
(
ordered
):
3
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
;
>
COLUMN_NAME
COLUMN_DEFAULT
COLUMN_ON_UPDATE
>
----------- --------------------------- -----------------
--
>
----------- --------------------------- -----------------
>
ID
null
null
>
V
(
NEXT
VALUE
FOR
PUBLIC
.
SEQ
)
null
>
V2
null
CURRENT_TIMESTAMP
()
>
V2
null
CURRENT_TIMESTAMP
>
rows
(
ordered
):
3
DROP
TABLE
TEST
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论