11
11
select now()-now(),weekday(curdate())-weekday(now()),unix_timestamp()-unix_timestamp(now());
12
12
select from_unixtime(unix_timestamp("1994-03-02 10:11:12")),from_unixtime(unix_timestamp("1994-03-02 10:11:12"),"%Y-%m-%d %h:%i:%s"),from_unixtime(unix_timestamp("1994-03-02 10:11:12"))+0;
13
select sec_to_time(9001),sec_to_time(9001)+0,time_to_sec("15:12:22"),
14
sec_to_time(time_to_sec("0:30:47")/6.21);
15
select sec_to_time(time_to_sec('-838:59:59'));
16
select now()-curdate()*1000000-curtime();
17
select strcmp(current_timestamp(),concat(current_date()," ",current_time()));
18
select strcmp(localtime(),concat(current_date()," ",current_time()));
19
select strcmp(localtimestamp(),concat(current_date()," ",current_time()));
13
20
select date_format("1997-01-02 03:04:05", "%M %W %D %Y %y %m %d %h %i %s %w");
14
21
select date_format("1997-01-02", concat("%M %W %D ","%Y %y %m %d %h %i %s %w"));
15
22
select dayofmonth("1997-01-02"),dayofmonth(19970323);
16
23
select month("1997-01-02"),year("98-02-03"),dayofyear("1997-12-31");
17
--error ER_INVALID_DATETIME_VALUE # No more bad dates!
24
--error 1686 # No more bad dates!
18
25
select month("2001-02-00"),year("2001-01-01");
19
select DAYOFYEAR("1997-03-03"), QUARTER(980303);
26
select DAYOFYEAR("1997-03-03"), WEEK("1998-03-03"), QUARTER(980303);
20
27
select HOUR("1997-03-03 23:03:22"), MINUTE("23:03:22"), SECOND(230322);
29
# Test of week and yearweek
30
select week(19980101),week(19970101),week(19980101,1),week(19970101,1);
31
select week(19981231),week(19971231),week(19981231,1),week(19971231,1);
32
select week(19950101),week(19950101,1);
33
select yearweek('1981-12-31',1),yearweek('1982-01-01',1),yearweek('1982-12-31',1),yearweek('1983-01-01',1);
34
select yearweek('1987-01-01',1),yearweek('1987-01-01');
35
select week("2000-01-01",0) as '2000', week("2001-01-01",0) as '2001', week("2002-01-01",0) as '2002',week("2003-01-01",0) as '2003', week("2004-01-01",0) as '2004', week("2005-01-01",0) as '2005', week("2006-01-01",0) as '2006';
36
select week("2000-01-06",0) as '2000', week("2001-01-06",0) as '2001', week("2002-01-06",0) as '2002',week("2003-01-06",0) as '2003', week("2004-01-06",0) as '2004', week("2005-01-06",0) as '2005', week("2006-01-06",0) as '2006';
37
select week("2000-01-01",1) as '2000', week("2001-01-01",1) as '2001', week("2002-01-01",1) as '2002',week("2003-01-01",1) as '2003', week("2004-01-01",1) as '2004', week("2005-01-01",1) as '2005', week("2006-01-01",1) as '2006';
38
select week("2000-01-06",1) as '2000', week("2001-01-06",1) as '2001', week("2002-01-06",1) as '2002',week("2003-01-06",1) as '2003', week("2004-01-06",1) as '2004', week("2005-01-06",1) as '2005', week("2006-01-06",1) as '2006';
39
select yearweek("2000-01-01",0) as '2000', yearweek("2001-01-01",0) as '2001', yearweek("2002-01-01",0) as '2002',yearweek("2003-01-01",0) as '2003', yearweek("2004-01-01",0) as '2004', yearweek("2005-01-01",0) as '2005', yearweek("2006-01-01",0) as '2006';
40
select yearweek("2000-01-06",0) as '2000', yearweek("2001-01-06",0) as '2001', yearweek("2002-01-06",0) as '2002',yearweek("2003-01-06",0) as '2003', yearweek("2004-01-06",0) as '2004', yearweek("2005-01-06",0) as '2005', yearweek("2006-01-06",0) as '2006';
41
select yearweek("2000-01-01",1) as '2000', yearweek("2001-01-01",1) as '2001', yearweek("2002-01-01",1) as '2002',yearweek("2003-01-01",1) as '2003', yearweek("2004-01-01",1) as '2004', yearweek("2005-01-01",1) as '2005', yearweek("2006-01-01",1) as '2006';
42
select yearweek("2000-01-06",1) as '2000', yearweek("2001-01-06",1) as '2001', yearweek("2002-01-06",1) as '2002',yearweek("2003-01-06",1) as '2003', yearweek("2004-01-06",1) as '2004', yearweek("2005-01-06",1) as '2005', yearweek("2006-01-06",1) as '2006';
43
select week(19981231,2), week(19981231,3), week(20000101,2), week(20000101,3);
44
select week(20001231,2),week(20001231,3);
46
select week(19981231,0) as '0', week(19981231,1) as '1', week(19981231,2) as '2', week(19981231,3) as '3', week(19981231,4) as '4', week(19981231,5) as '5', week(19981231,6) as '6', week(19981231,7) as '7';
47
select week(20000101,0) as '0', week(20000101,1) as '1', week(20000101,2) as '2', week(20000101,3) as '3', week(20000101,4) as '4', week(20000101,5) as '5', week(20000101,6) as '6', week(20000101,7) as '7';
48
select week(20000106,0) as '0', week(20000106,1) as '1', week(20000106,2) as '2', week(20000106,3) as '3', week(20000106,4) as '4', week(20000106,5) as '5', week(20000106,6) as '6', week(20000106,7) as '7';
49
select week(20001231,0) as '0', week(20001231,1) as '1', week(20001231,2) as '2', week(20001231,3) as '3', week(20001231,4) as '4', week(20001231,5) as '5', week(20001231,6) as '6', week(20001231,7) as '7';
50
select week(20010101,0) as '0', week(20010101,1) as '1', week(20010101,2) as '2', week(20010101,3) as '3', week(20010101,4) as '4', week(20010101,5) as '5', week(20010101,6) as '6', week(20010101,7) as '7';
52
select yearweek(20001231,0), yearweek(20001231,1), yearweek(20001231,2), yearweek(20001231,3), yearweek(20001231,4), yearweek(20001231,5), yearweek(20001231,6), yearweek(20001231,7);
54
set default_week_format = 6;
55
select week(20001231), week(20001231,6);
56
set default_week_format = 0;
58
set default_week_format = 2;
59
select week(20001231),week(20001231,2),week(20001231,0);
60
set default_week_format = 0;
23
62
select date_format('1998-12-31','%x-%v'),date_format('1999-01-01','%x-%v');
24
63
select date_format('1999-12-31','%x-%v'),date_format('2000-01-01','%x-%v');
174
213
create table t1 (d date, dt datetime, t timestamp, c char(10));
175
insert into t1 values (null, null, null, null);
176
--error ER_INVALID_DATETIME_VALUE # Bad dates...
177
214
insert into t1 values ("0000-00-00", "0000-00-00", "0000-00-00", "0000-00-00");
178
--error ER_INVALID_DATETIME_VALUE # 0000-00-00 is a bad date
215
--error 1686 # 0000-00-00 is a bad date
179
216
select dayofyear("0000-00-00"),dayofyear(d),dayofyear(dt),dayofyear(t),dayofyear(c) from t1;
180
--error ER_INVALID_DATETIME_VALUE # 0000-00-00 is a bad date
217
--error 1686 # 0000-00-00 is a bad date
181
218
select dayofmonth("0000-00-00"),dayofmonth(d),dayofmonth(dt),dayofmonth(t),dayofmonth(c) from t1;
182
--error ER_INVALID_DATETIME_VALUE # 0000-00-00 is not a damn date.
219
--error 1686 # 0000-00-00 is not a damn date.
183
220
select month("0000-00-00"),month(d),month(dt),month(t),month(c) from t1;
184
--error ER_INVALID_DATETIME_VALUE # 0000-00-00 not a date
221
--error 1686 # 0000-00-00 not a date
185
222
select quarter("0000-00-00"),quarter(d),quarter(dt),quarter(t),quarter(c) from t1;
186
--error ER_INVALID_DATETIME_VALUE # Argh. 0000-00-00 is not a date.
223
select week("0000-00-00"),week(d),week(dt),week(t),week(c) from t1;
224
--error 1686 # Argh. 0000-00-00 is not a date.
187
225
select year("0000-00-00"),year(d),year(dt),year(t),year(c) from t1;
188
--error ER_INVALID_DATETIME_VALUE # Bad datetime
189
select to_days("0000-00-00"),to_days(d),to_days(dt),to_days(c) from t1;
190
--error ER_INVALID_DATETIME_VALUE # Ugh. bad datetime
226
select yearweek("0000-00-00"),yearweek(d),yearweek(dt),yearweek(t),yearweek(c) from t1;
227
select to_days("0000-00-00"),to_days(d),to_days(dt),to_days(t),to_days(c) from t1;
191
228
select extract(MONTH FROM "0000-00-00"),extract(MONTH FROM d),extract(MONTH FROM dt),extract(MONTH FROM t),extract(MONTH FROM c) from t1;
381
416
# Test SAPDB UTC_% functions. This part is TZ dependant (It is supposed that
382
417
# TZ variable set to GMT-3
384
select strcmp(date_sub(localtimestamp(), interval 0 hour), utc_timestamp())=0;
385
select strcmp(date_format(date_sub(localtimestamp(), interval 0 hour),"%Y-%m-%d"), utc_date())=0;
419
select strcmp(date_sub(localtimestamp(), interval 3 hour), utc_timestamp())=0;
420
select strcmp(date_format(date_sub(localtimestamp(), interval 3 hour),"%T"), utc_time())=0;
421
select strcmp(date_format(date_sub(localtimestamp(), interval 3 hour),"%Y-%m-%d"), utc_date())=0;
422
select strcmp(date_format(utc_timestamp(),"%T"), utc_time())=0;
386
423
select strcmp(date_format(utc_timestamp(),"%Y-%m-%d"), utc_date())=0;
424
select strcmp(concat(utc_date(),' ',utc_time()),utc_timestamp())=0;
388
explain extended select period_add("9602",-12),period_diff(199505,"9404"),from_days(to_days("960101")),dayofmonth("1997-01-02"), month("1997-01-02"), monthname("1972-03-04"),dayofyear("0000-00-00"),HOUR("1997-03-03 23:03:22"),MINUTE("23:03:22"),SECOND(230322),QUARTER(980303),weekday(curdate())-weekday(now()),dayname("1962-03-03"),unix_timestamp(),curdate(),utc_date(),utc_timestamp(),date_format("1997-01-02 03:04:05", "%M %W %D %Y %y %m %d %h %i %s %w"),from_unixtime(unix_timestamp("1994-03-02 10:11:12")),"1997-12-31 23:59:59" + INTERVAL 1 SECOND,"1998-01-01 00:00:00" - INTERVAL 1 SECOND,INTERVAL 1 DAY + "1997-12-31", extract(YEAR FROM "1999-01-02 10:11:12"),date_add("1997-12-31 23:59:59",INTERVAL 1 SECOND);
426
explain extended select period_add("9602",-12),period_diff(199505,"9404"),from_days(to_days("960101")),dayofmonth("1997-01-02"), month("1997-01-02"), monthname("1972-03-04"),dayofyear("0000-00-00"),HOUR("1997-03-03 23:03:22"),MINUTE("23:03:22"),SECOND(230322),QUARTER(980303),WEEK("1998-03-03"),yearweek("2000-01-01",1),week(19950101,1),year("98-02-03"),weekday(curdate())-weekday(now()),dayname("1962-03-03"),unix_timestamp(),sec_to_time(time_to_sec("0:30:47")/6.21),curtime(),utc_time(),curdate(),utc_date(),utc_timestamp(),date_format("1997-01-02 03:04:05", "%M %W %D %Y %y %m %d %h %i %s %w"),from_unixtime(unix_timestamp("1994-03-02 10:11:12")),"1997-12-31 23:59:59" + INTERVAL 1 SECOND,"1998-01-01 00:00:00" - INTERVAL 1 SECOND,INTERVAL 1 DAY + "1997-12-31", extract(YEAR FROM "1999-01-02 10:11:12"),date_add("1997-12-31 23:59:59",INTERVAL 1 SECOND);
390
428
SET @TMP='2007-08-01 12:22:49';
391
429
CREATE TABLE t1 (d DATETIME);
402
--error ER_INVALID_DATETIME_VALUE # Bad date
403
440
select last_day('2005-00-00');
404
--error ER_INVALID_DATETIME_VALUE # Bad date
405
441
select last_day('2005-00-01');
406
--error ER_INVALID_DATETIME_VALUE # Bad date
407
442
select last_day('2005-01-00');
445
# Bug #18501: monthname and NULLs
448
--error 1686 # Once again no bad dates allowed!
449
select monthname(str_to_date(null, '%m')), monthname(str_to_date(null, '%m')),
450
monthname(str_to_date(1, '%m')), monthname(str_to_date(0, '%m'));
410
453
# Bug#16377 result of DATE/TIME functions were compared as strings which
411
454
# can lead to a wrong result.
412
455
# Now wrong dates should be compared only with CAST()
413
create table t1(f1 date, f3 datetime);
414
insert into t1 values ("2006-01-01", "2006-01-01 12:01:01");
415
insert into t1 values ("2006-01-02", "2006-01-02 12:01:02");
456
create table t1(f1 date, f2 time, f3 datetime);
457
insert into t1 values ("2006-01-01", "12:01:01", "2006-01-01 12:01:01");
458
insert into t1 values ("2006-01-02", "12:01:02", "2006-01-02 12:01:02");
416
459
select f1 from t1 where f1 between CAST("2006-1-1" as date) and CAST(20060101 as date);
417
460
select f1 from t1 where f1 between cast("2006-1-1" as date) and cast("2006.1.1" as date);
418
461
select f1 from t1 where date(f1) between cast("2006-1-1" as date) and cast("2006.1.1" as date);
462
select f2 from t1 where f2 between cast("12:1:2" as time) and cast("12:2:2" as time);
463
select f2 from t1 where time(f2) between cast("12:1:2" as time) and cast("12:2:2" as time);
419
464
select f3 from t1 where f3 between cast("2006-1-1 12:1:1" as datetime) and cast("2006-1-1 12:1:2" as datetime);
420
465
select f3 from t1 where timestamp(f3) between cast("2006-1-1 12:1:1" as datetime) and cast("2006-1-1 12:1:2" as datetime);
421
466
select f1 from t1 where cast("2006-1-1" as date) between f1 and f3;
425
470
select f1 from t1 where makedate(2006,2) between date(f1) and date(f3);
477
create table t1 select now() - now(), curtime() - curtime(),
478
sec_to_time(1) + 0, from_unixtime(1) + 0;
479
show create table t1;
483
# Bug #11655: Wrong time is returning from nested selects - maximum time exists
485
# check if SEC_TO_TIME() handles out-of-range values correctly
486
SELECT SEC_TO_TIME(3300000);
487
SELECT SEC_TO_TIME(3300000)+0;
488
SELECT SEC_TO_TIME(3600 * 4294967296);
490
# check if TIME_TO_SEC() handles out-of-range values correctly
491
SELECT TIME_TO_SEC('916:40:00');
493
# check if ADDTIME() handles out-of-range values correctly
494
SELECT ADDTIME('500:00:00', '416:40:00');
495
SELECT ADDTIME('916:40:00', '416:40:00');
497
# check if SUBTIME() handles out-of-range values correctly
498
SELECT SUBTIME('916:40:00', '416:40:00');
499
SELECT SUBTIME('-916:40:00', '416:40:00');
501
# check if MAKETIME() handles out-of-range values correctly
502
SELECT MAKETIME(916,0,0);
503
SELECT MAKETIME(4294967296, 0, 0);
504
SELECT MAKETIME(-4294967296, 0, 0);
505
SELECT MAKETIME(0, 4294967296, 0);
506
SELECT MAKETIME(0, 0, 4294967296);
428
508
# check if EXTRACT() handles out-of-range values correctly
429
--error ER_INVALID_DATETIME_VALUE # Bad datetime
430
509
SELECT EXTRACT(HOUR FROM '100000:02:03');
511
# check if we get proper warnings if both input string truncation
512
# and out-of-range value occur
513
CREATE TABLE t1(f1 TIME);
515
INSERT INTO t1 VALUES('916:00:00 a');
433
520
# 21913: DATE_FORMAT() Crashes mysql server if I use it through
434
521
# mysql-connector-j driver.
444
531
DROP TABLE testBug8868;
534
# Bug #31160: MAKETIME() crashes server when returning NULL in ORDER BY using
540
INSERT INTO t1 VALUES (now()), (now());
541
SELECT 1 FROM t1 ORDER BY MAKETIME(1, 1, a);
544
# Bug #19844 time_format in Union truncates values
547
(select time_format(timediff(now(), DATE_SUB(now(),INTERVAL 5 DAY)),'%H') As H)
549
(select time_format(timediff(now(), DATE_SUB(now(),INTERVAL 5 DAY)),'%H') As H);
550
(select time_format(timediff(now(), DATE_SUB(now(),INTERVAL 5 DAY)),'%k') As H)
552
(select time_format(timediff(now(), DATE_SUB(now(),INTERVAL 5 DAY)),'%k') As H);
553
(select time_format(timediff(now(), DATE_SUB(now(),INTERVAL 5 HOUR)),'%H') As H)
555
(select time_format(timediff(now(), DATE_SUB(now(),INTERVAL 5 HOUR)),'%H') As H);
557
(select time_format(timediff(now(), DATE_SUB(now(),INTERVAL 5 HOUR)),'%k') As H)
559
(select time_format(timediff(now(), DATE_SUB(now(),INTERVAL 5 HOUR)),'%k') As H);
447
562
# Bug #23653: crash if last_day('0000-00-00')
450
--error ER_INVALID_DATETIME_VALUE # Bad date
451
565
select last_day('0000-00-00');
568
# Bug 23616: datetime functions with double argumets
571
select isnull(week(now() + 0)), isnull(week(now() + 0.2)),
572
week(20061108), week(20061108.01), week(20061108085411.000002);
453
574
--echo End of 4.1 tests
455
576
explain extended select timestampdiff(SQL_TSI_WEEK, '2001-02-01', '2001-05-01') as a1,