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

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Test of SYSTEM time zone handling ( for my_system_gmt_sec()).
  3. # This script must be run with TZ=MET
  4. -- require r/have_met_timezone.require
  5. disable_query_log;
  6. select FROM_UNIXTIME(24*3600);
  7. enable_query_log;
  8. # Initialization
  9. --disable_warnings
  10. DROP TABLE IF EXISTS t1;
  11. --enable_warnings
  12. # The following is because of daylight saving time
  13. --replace_result MEST MET
  14. show variables like "system_time_zone";
  15. #
  16. # Test unix timestamp
  17. #
  18. select @a:=FROM_UNIXTIME(1);
  19. select unix_timestamp(@a);
  20. #
  21. # Test of some values, including some with daylight saving time
  22. #
  23. CREATE TABLE t1 (ts int);
  24. INSERT INTO t1 (ts) VALUES (Unix_timestamp('2002-10-27 01:00'));
  25. INSERT INTO t1 (ts) VALUES (Unix_timestamp('2002-10-27 02:00'));
  26. INSERT INTO t1 (ts) VALUES (Unix_timestamp('2002-10-27 03:00'));
  27. INSERT INTO t1 (ts) VALUES (Unix_timestamp('2002-10-27 02:00'));
  28. INSERT INTO t1 (ts) VALUES (Unix_timestamp('2002-10-27 01:00'));
  29. INSERT INTO t1 (ts) VALUES (Unix_timestamp('2002-10-27 02:00'));
  30. INSERT INTO t1 (ts) VALUES (Unix_timestamp('2003-03-30 02:59:59'));
  31. INSERT INTO t1 (ts) VALUES (Unix_timestamp('2003-03-30 03:00:00'));
  32. INSERT INTO t1 (ts) VALUES (Unix_timestamp('2003-03-30 03:59:59'));
  33. INSERT INTO t1 (ts) VALUES (Unix_timestamp('2003-03-30 04:00:01'));
  34. SELECT ts,from_unixtime(ts) FROM t1;
  35. DROP TABLE t1;
  36. #
  37. # Test of warning for spring time-gap values for system time zone
  38. #
  39. CREATE TABLE t1 (ts timestamp);
  40. INSERT INTO t1 (ts) VALUES ('2003-03-30 01:59:59'),
  41.                            ('2003-03-30 02:59:59'),
  42.                            ('2003-03-30 03:00:00');
  43. DROP TABLE t1;
  44. #
  45. # Test for fix for Bug#2523
  46. #
  47. select unix_timestamp('1970-01-01 01:00:00'), 
  48.        unix_timestamp('1970-01-01 01:00:01'),
  49.        unix_timestamp('2038-01-01 00:59:59'),
  50.        unix_timestamp('2038-01-01 01:00:00');
  51. # End of 4.1 tests