提交 e9804dc9 authored 作者: Stéphane Eintrazi's avatar Stéphane Eintrazi

Implement 'WEEK' in date_trunc and update test

上级 aae8c9be
......@@ -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 = 0l;
Long timeNanos = null;
// 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 = 0l;
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 = 0l;
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 {
......
......@@ -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 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论