timezone2.test
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:7k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. # This script tests our own time zone support functions
  2. # Preparing playground
  3. --disable_warnings
  4. drop table if exists t1, t2;
  5. --enable_warnings
  6. # Let us first check +HH:MM style timezones
  7. #
  8. create table t1 (ts timestamp);
  9. set time_zone='+00:00';
  10. select unix_timestamp(utc_timestamp())-unix_timestamp(current_timestamp());
  11. insert into t1 (ts) values ('2003-03-30 02:30:00');
  12. set time_zone='+10:30';
  13. select unix_timestamp(utc_timestamp())-unix_timestamp(current_timestamp());
  14. insert into t1 (ts) values ('2003-03-30 02:30:00');
  15. set time_zone='-10:00';
  16. select unix_timestamp(utc_timestamp())-unix_timestamp(current_timestamp());
  17. insert into t1 (ts) values ('2003-03-30 02:30:00');
  18. # Here we will get different results
  19. select * from t1;
  20. drop table t1;
  21. # Let us try DB specified time zones
  22. #
  23. select Name from mysql.time_zone_name where Name in 
  24.   ('UTC','Universal','MET','Europe/Moscow','leap/Europe/Moscow');
  25. create table t1 (i int, ts timestamp);
  26. set time_zone='MET';
  27. # We check common date time value and non existent or ambiguios values
  28. # Normal value without DST
  29. insert into t1 (i, ts) values
  30.   (unix_timestamp('2003-03-01 00:00:00'),'2003-03-01 00:00:00');
  31. # Values around and in spring time-gap
  32. insert into t1 (i, ts) values
  33.   (unix_timestamp('2003-03-30 01:59:59'),'2003-03-30 01:59:59'),
  34.   (unix_timestamp('2003-03-30 02:30:00'),'2003-03-30 02:30:00'),
  35.   (unix_timestamp('2003-03-30 03:00:00'),'2003-03-30 03:00:00');
  36. # Normal value with DST
  37. insert into t1 (i, ts) values
  38.   (unix_timestamp('2003-05-01 00:00:00'),'2003-05-01 00:00:00');
  39. # Ambiguos values (also check for determenism)
  40. insert into t1 (i, ts) values
  41.   (unix_timestamp('2003-10-26 01:00:00'),'2003-10-26 01:00:00'),
  42.   (unix_timestamp('2003-10-26 02:00:00'),'2003-10-26 02:00:00'),
  43.   (unix_timestamp('2003-10-26 02:59:59'),'2003-10-26 02:59:59'),
  44.   (unix_timestamp('2003-10-26 04:00:00'),'2003-10-26 04:00:00'),
  45.   (unix_timestamp('2003-10-26 02:59:59'),'2003-10-26 02:59:59');
  46. set time_zone='UTC';
  47. select * from t1;
  48. delete from t1;
  49. # Simple check for 'Europe/Moscow' time zone just for showing that it works
  50. set time_zone='Europe/Moscow';
  51. insert into t1 (i, ts) values
  52.   (unix_timestamp('2004-01-01 00:00:00'),'2004-01-01 00:00:00'),
  53.   (unix_timestamp('2004-03-28 02:30:00'),'2004-03-28 02:30:00'),
  54.   (unix_timestamp('2004-08-01 00:00:00'),'2003-08-01 00:00:00'),
  55.   (unix_timestamp('2004-10-31 02:30:00'),'2004-10-31 02:30:00');
  56. select * from t1;
  57. delete from t1;
  58. #
  59. # Check for time zone with leap seconds
  60. # Values in ts column must be the same but values in i column should
  61. # differ from corresponding values for Europe/Moscow a bit.
  62. #
  63. set time_zone='leap/Europe/Moscow';
  64. insert into t1 (i, ts) values
  65.   (unix_timestamp('2004-01-01 00:00:00'),'2004-01-01 00:00:00'),
  66.   (unix_timestamp('2004-03-28 02:30:00'),'2004-03-28 02:30:00'),
  67.   (unix_timestamp('2004-08-01 00:00:00'),'2003-08-01 00:00:00'),
  68.   (unix_timestamp('2004-10-31 02:30:00'),'2004-10-31 02:30:00');
  69. select * from t1;
  70. delete from t1;
  71. # Let us test leap jump
  72. insert into t1 (i, ts) values
  73.   (unix_timestamp('1981-07-01 03:59:59'),'1981-07-01 03:59:59'),
  74.   (unix_timestamp('1981-07-01 04:00:00'),'1981-07-01 04:00:00');
  75. select * from t1;
  76. # Additional 60ieth second!
  77. select from_unixtime(362793609);
  78. drop table t1;
  79. # Let us test range for TIMESTAMP
  80. #
  81. create table t1 (ts timestamp);
  82. set time_zone='UTC';
  83. insert into t1 values ('0000-00-00 00:00:00'),('1969-12-31 23:59:59'),
  84.                       ('1970-01-01 00:00:00'),('1970-01-01 00:00:01'),
  85.                       ('2037-12-31 23:59:59'),('2038-01-01 00:00:00');
  86. select * from t1;
  87. delete from t1;
  88. # MET time zone has range shifted by one hour
  89. set time_zone='MET';
  90. insert into t1 values ('0000-00-00 00:00:00'),('1970-01-01 00:30:00'),
  91.                       ('1970-01-01 01:00:00'),('1970-01-01 01:00:01'),
  92.                       ('2038-01-01 00:59:59'),('2038-01-01 01:00:00');
  93. select * from t1;
  94. delete from t1;
  95. # same for +01:30 time zone
  96. set time_zone='+01:30';
  97. insert into t1 values ('0000-00-00 00:00:00'),('1970-01-01 01:00:00'),
  98.                       ('1970-01-01 01:30:00'),('1970-01-01 01:30:01'),
  99.                       ('2038-01-01 01:29:59'),('2038-01-01 01:30:00');
  100. select * from t1;
  101. drop table t1;
  102. # Test of show variables
  103. #
  104. show variables like 'time_zone';
  105. set time_zone = default;
  106. show variables like 'time_zone';
  107. # Let us try some invalid time zone specifications
  108. #
  109. --error 1298
  110. set time_zone= '0';
  111. --error 1298
  112. set time_zone= '0:0';
  113. --error 1298
  114. set time_zone= '-20:00';
  115. --error 1298
  116. set time_zone= '+20:00';
  117. --error 1298
  118. set time_zone= 'Some/Unknown/Time/Zone';
  119. # Let us check that aliases for time zones work and they are 
  120. # case-insensitive
  121. select convert_tz(now(),'UTC', 'Universal') = now();
  122. select convert_tz(now(),'utc', 'UTC') = now();
  123. # Let us test CONVERT_TZ function (may be func_time.test is better place).
  124. #
  125. select convert_tz('1917-11-07 12:00:00', 'MET', 'UTC'); 
  126. select convert_tz('1970-01-01 01:00:00', 'MET', 'UTC'); 
  127. select convert_tz('1970-01-01 01:00:01', 'MET', 'UTC'); 
  128. select convert_tz('2003-03-01 00:00:00', 'MET', 'UTC');
  129. select convert_tz('2003-03-30 01:59:59', 'MET', 'UTC');
  130. select convert_tz('2003-03-30 02:30:00', 'MET', 'UTC');
  131. select convert_tz('2003-03-30 03:00:00', 'MET', 'UTC');
  132. select convert_tz('2003-05-01 00:00:00', 'MET', 'UTC');
  133. select convert_tz('2003-10-26 01:00:00', 'MET', 'UTC');
  134. select convert_tz('2003-10-26 02:00:00', 'MET', 'UTC');
  135. select convert_tz('2003-10-26 02:59:59', 'MET', 'UTC');
  136. select convert_tz('2003-10-26 04:00:00', 'MET', 'UTC');
  137. select convert_tz('2038-01-01 00:59:59', 'MET', 'UTC');
  138. select convert_tz('2038-01-01 01:00:00', 'MET', 'UTC');
  139. select convert_tz('2103-01-01 04:00:00', 'MET', 'UTC');
  140. # Let us test variable time zone argument
  141. create table t1 (tz varchar(3));
  142. insert into t1 (tz) values ('MET'), ('UTC');
  143. select tz, convert_tz('2003-12-31 00:00:00',tz,'UTC'), convert_tz('2003-12-31 00:00:00','UTC',tz) from t1 order by tz;
  144. drop table t1;
  145. # Parameters to CONVERT_TZ() what should give NULL
  146. select convert_tz('2003-12-31 04:00:00', NULL, 'UTC');
  147. select convert_tz('2003-12-31 04:00:00', 'SomeNotExistingTimeZone', 'UTC');
  148. select convert_tz('2003-12-31 04:00:00', 'MET', 'SomeNotExistingTimeZone');
  149. select convert_tz('2003-12-31 04:00:00', 'MET', NULL);
  150. select convert_tz( NULL, 'MET', 'UTC');
  151. #
  152. # Test for bug #4508 "CONVERT_TZ() function with new time zone as param
  153. # crashes server." (Was caused by improperly worked mechanism of time zone
  154. # dynamical loading).
  155. #
  156. create table t1 (ts timestamp);
  157. set timestamp=1000000000;
  158. insert into t1 (ts) values (now());
  159. select convert_tz(ts, @@time_zone, 'Japan') from t1;
  160. drop table t1;
  161. #
  162. # Test for bug #7705 "CONVERT_TZ() crashes with subquery/WHERE on index 
  163. # column". Queries in which one of time zone arguments of CONVERT_TZ() is
  164. # determined as constant only at val() stage (not at fix_fields() stage),
  165. # should not crash server.
  166. #
  167. select convert_tz('2005-01-14 17:00:00', 'UTC', custTimeZone) from (select 'UTC' as custTimeZone) as tmp;
  168. #
  169. # Test for bug #7899 "CREATE TABLE .. SELECT .. and CONVERT_TZ() function
  170. # does not work well together". The following statement should return only
  171. # one NULL row and not result of full join.
  172. #
  173. create table t1 select convert_tz(NULL, NULL, NULL);
  174. select * from t1;
  175. drop table t1;
  176. # End of 4.1 tests