📄 timezone3.test
字号:
## Test of handling time zone with leap seconds.## This test should be run with TZ=:$MYSQL_TEST_DIR/std_data/Moscow_leap# This implies that this test should be run only on systems that interpret # characters after colon in TZ variable as path to zoneinfo file.## Check that we have successfully set time zone with leap seconds.--require r/have_moscow_leap_timezone.requiredisable_query_log;select from_unixtime(1072904422);enable_query_log;# Initial clean-up--disable_warningsdrop table if exists t1;--enable_warnings## Let us check behavior of conversion from broken-down representation# to time_t representation, for normal, non-existent and ambigious dates# (This check is similar to the one in timezone2.test in 4.1)#create table t1 (i int, c varchar(20));# Normal value without DSTinsert into t1 values (unix_timestamp("2004-01-01 00:00:00"), "2004-01-01 00:00:00");# Values around and in spring time-gapinsert into t1 values (unix_timestamp("2004-03-28 01:59:59"), "2004-03-28 01:59:59"), (unix_timestamp("2004-03-28 02:30:00"), "2004-03-28 02:30:00"), (unix_timestamp("2004-03-28 03:00:00"), "2004-03-28 03:00:00");# Normal value with DSTinsert into t1 values (unix_timestamp('2004-05-01 00:00:00'),'2004-05-01 00:00:00');# Ambiguos values (also check for determenism)insert into t1 values (unix_timestamp('2004-10-31 01:00:00'),'2004-10-31 01:00:00'), (unix_timestamp('2004-10-31 02:00:00'),'2004-10-31 02:00:00'), (unix_timestamp('2004-10-31 02:59:59'),'2004-10-31 02:59:59'), (unix_timestamp('2004-10-31 04:00:00'),'2004-10-31 04:00:00'), (unix_timestamp('2004-10-31 02:59:59'),'2004-10-31 02:59:59');# Test of leapinsert into t1 values (unix_timestamp('1981-07-01 03:59:59'),'1981-07-01 03:59:59'), (unix_timestamp('1981-07-01 04:00:00'),'1981-07-01 04:00:00');select i, from_unixtime(i), c from t1;drop table t1;## Test for bug #6387 "Queried timestamp values do not match the # inserted". my_gmt_sec() function was not working properly if we# had time zone with leap seconds #create table t1 (ts timestamp);insert into t1 values (19730101235900), (20040101235900);select * from t1;drop table t1;# End of 4.1 tests
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -