Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
e9804dc9
提交
e9804dc9
authored
3月 15, 2018
作者:
Stéphane Eintrazi
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Implement 'WEEK' in date_trunc and update test
上级
aae8c9be
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
74 行增加
和
11 行删除
+74
-11
Function.java
h2/src/main/org/h2/expression/Function.java
+17
-5
date_trunc.sql
.../org/h2/test/scripts/functions/timeanddate/date_trunc.sql
+57
-6
没有找到文件。
h2/src/main/org/h2/expression/Function.java
浏览文件 @
e9804dc9
...
...
@@ -13,16 +13,17 @@ import java.io.Reader;
import
java.math.BigDecimal
;
import
java.nio.charset.StandardCharsets
;
import
java.sql.Connection
;
import
java.sql.Date
;
import
java.sql.ResultSet
;
import
java.sql.SQLException
;
import
java.text.DateFormatSymbols
;
import
java.util.ArrayList
;
import
java.util.Calendar
;
import
java.util.GregorianCalendar
;
import
java.util.HashMap
;
import
java.util.Locale
;
import
java.util.regex.Pattern
;
import
java.util.regex.PatternSyntaxException
;
import
org.h2.api.ErrorCode
;
import
org.h2.command.Command
;
import
org.h2.command.Parser
;
...
...
@@ -2999,9 +3000,9 @@ public class Function extends Expression implements FunctionCall {
long
[]
fieldDateAndTime
=
DateTimeUtils
.
dateAndTimeFromValue
(
value
);
long
dateValue
=
fieldDateAndTime
[
0
];
long
timeNanosRetrieved
=
fieldDateAndTime
[
1
];
// Variable used to the time in nanoseconds of the date truncated.
long
timeNanos
=
0
l
;
Long
timeNanos
=
nul
l
;
// Compute the number of time unit in the date, for example, the
// number of time unit 'HOUR' in '15:14:13' is '15'. Then convert the
...
...
@@ -3048,8 +3049,19 @@ public class Function extends Expression implements FunctionCall {
timeNanos
=
0
l
;
break
;
default
:
case
WEEK
:
Date
currentDate
=
DateTimeUtils
.
convertDateValueToDate
(
dateValue
);
Calendar
calendar
=
Calendar
.
getInstance
();
calendar
.
setTime
(
currentDate
);
calendar
.
set
(
Calendar
.
DAY_OF_WEEK
,
Calendar
.
MONDAY
);
ValueTimestamp
valueTimestamp
=
ValueTimestamp
.
fromMillis
(
calendar
.
getTimeInMillis
());
dateValue
=
valueTimestamp
.
getDateValue
();
timeNanos
=
0
l
;
break
;
}
if
(
timeNanos
==
null
)
{
// Return an exception in the timeUnit is not recognized
throw
DbException
.
getUnsupportedException
(
timeUnitStr
);
...
...
@@ -3060,7 +3072,7 @@ public class Function extends Expression implements FunctionCall {
// Case we create a timestamp with timezone with the dateValue and
// timeNanos computed.
ValueTimestampTimeZone
vTmp
=
(
ValueTimestampTimeZone
)
value
;
result
=
ValueTimestampTimeZone
.
fromDateValueAndNanos
(
vTmp
.
getDateValue
()
,
timeNanos
,
result
=
ValueTimestampTimeZone
.
fromDateValueAndNanos
(
dateValue
,
timeNanos
,
vTmp
.
getTimeZoneOffsetMins
());
}
else
{
...
...
h2/src/test/org/h2/test/scripts/functions/timeanddate/date_trunc.sql
浏览文件 @
e9804dc9
...
...
@@ -600,15 +600,66 @@ select DATE_TRUNC('DAY', '2015-05-29 15:14:13');
--
-- Test
unhandled time unit
-- Test
time unit 'WEEK'
--
SELECT
DATE_TRUNC
(
'---'
,
'2015-05-29 15:14:13
'
);
>
exception
select
DATE_TRUNC
(
'week'
,
time
'00:00:00
'
);
>
>
1969
-
12
-
29
00
:
00
:
00
SELECT
DATE_TRUNC
(
'week'
,
'2015-05-29 15:14:13'
);
>
exception
select
DATE_TRUNC
(
'WEEK'
,
time
'00:00:00'
);
>>
1969
-
12
-
29
00
:
00
:
00
select
DATE_TRUNC
(
'week'
,
time
'15:14:13'
);
>>
1969
-
12
-
29
00
:
00
:
00
select
DATE_TRUNC
(
'WEEK'
,
time
'15:14:13'
);
>>
1969
-
12
-
29
00
:
00
:
00
select
DATE_TRUNC
(
'week'
,
date
'2015-05-28'
);
>>
2015
-
05
-
25
00
:
00
:
00
select
DATE_TRUNC
(
'WEEK'
,
date
'2015-05-28'
);
>>
2015
-
05
-
25
00
:
00
:
00
select
DATE_TRUNC
(
'week'
,
timestamp
'2015-05-29 15:14:13'
);
>>
2015
-
05
-
25
00
:
00
:
00
select
DATE_TRUNC
(
'WEEK'
,
timestamp
'2015-05-29 15:14:13'
);
>>
2015
-
05
-
25
00
:
00
:
00
select
DATE_TRUNC
(
'week'
,
timestamp
with
time
zone
'2015-05-29 15:14:13'
);
>>
2015
-
05
-
25
00
:
00
:
00
+
00
select
DATE_TRUNC
(
'WEEK'
,
timestamp
with
time
zone
'2015-05-29 15:14:13'
);
>>
2015
-
05
-
25
00
:
00
:
00
+
00
SELECT
DATE_TRUNC
(
'WEEK'
,
'2015-05-29 15:14:13'
);
select
DATE_TRUNC
(
'week'
,
timestamp
with
time
zone
'2015-05-29 05:14:13-06'
);
>>
2015
-
05
-
25
00
:
00
:
00
-
06
select
DATE_TRUNC
(
'WEEK'
,
timestamp
with
time
zone
'2015-05-29 05:14:13-06'
);
>>
2015
-
05
-
25
00
:
00
:
00
-
06
select
DATE_TRUNC
(
'week'
,
timestamp
with
time
zone
'2015-05-29 15:14:13+10'
);
>>
2015
-
05
-
25
00
:
00
:
00
+
10
select
DATE_TRUNC
(
'WEEK'
,
timestamp
with
time
zone
'2015-05-29 15:14:13+10'
);
>>
2015
-
05
-
25
00
:
00
:
00
+
10
select
DATE_TRUNC
(
'week'
,
'2015-05-29 15:14:13'
);
>>
2015
-
05
-
25
00
:
00
:
00
select
DATE_TRUNC
(
'WEEK'
,
'2015-05-29 15:14:13'
);
>>
2015
-
05
-
25
00
:
00
:
00
SELECT
DATE_TRUNC
(
'WEEK'
,
'2018-03-14 00:00:00.000'
);
>>
2018
-
03
-
12
00
:
00
:
00
SELECT
DATE_TRUNC
(
'week'
,
'2018-03-14 00:00:00.000'
);
>>
2018
-
03
-
12
00
:
00
:
00
--
-- Test unhandled time unit
--
SELECT
DATE_TRUNC
(
'---'
,
'2015-05-29 15:14:13'
);
>
exception
SELECT
DATE_TRUNC
(
'month'
,
'2015-05-29 15:14:13'
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论