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

MySQL数据库

开发平台:

Visual C++

  1. # Test of replication of time zones.
  2. source include/master-slave.inc;
  3. # Some preparations
  4. let $VERSION=`select version()`;
  5. create table t1 (t timestamp);
  6. create table t2 (t char(32));
  7. #
  8. # Let us check how well replication works when we are saving datetime
  9. # value in TIMESTAMP field.
  10. #
  11. connection master;
  12. select @@time_zone;
  13. set time_zone='UTC';
  14. insert into t1 values ('20040101000000'), ('20040611093902');
  15. select * from t1;
  16. # On slave we still in 'Europe/Moscow' so we should see equivalent but
  17. # textually different values.
  18. sync_slave_with_master;
  19. select * from t1;
  20. # Let us check also that setting of time_zone back to default also works
  21. # well
  22. connection master;
  23. delete from t1;
  24. set time_zone='Europe/Moscow';
  25. insert into t1 values ('20040101000000'), ('20040611093902');
  26. select * from t1;
  27. sync_slave_with_master;
  28. select * from t1;
  29. connection master;
  30. # We should not see SET ONE_SHOT time_zone before second insert
  31. --replace_result $VERSION VERSION
  32. show binlog events;
  33. #
  34. # Now let us check how well we replicate statments reading TIMESTAMP fields
  35. # (We should see the same data on master and on slave but it should differ 
  36. # from originally inserted)
  37. #
  38. set time_zone='MET';
  39. insert into t2 (select t from t1);
  40. select * from t1;
  41. sync_slave_with_master;
  42. select * from t2;
  43. #
  44. # Now let us check how well we replicate various CURRENT_* functions
  45. #
  46. connection master;
  47. delete from t2;
  48. set timestamp=1000072000;
  49. insert into t2 values (current_timestamp), (current_date), (current_time);
  50. sync_slave_with_master;
  51. # Values in ouput of these to queries should differ because we are in
  52. # in 'MET' on master and in 'Europe/Moscow on slave...
  53. set timestamp=1000072000;
  54. select current_timestamp, current_date, current_time;
  55. select * from t2;
  56. #
  57. # At last let us check replication of FROM_UNIXTIME/UNIX_TIMESTAMP functions.
  58. #
  59. connection master;
  60. delete from t2;
  61. insert into t2 values (from_unixtime(1000000000)),
  62.                       (unix_timestamp('2001-09-09 03:46:40'));
  63. select * from t2;
  64. sync_slave_with_master;
  65. # We should get same result on slave as on master
  66. select * from t2;
  67. #
  68. # Let us check that we are not allowing to set global time_zone with
  69. # replication
  70. #
  71. connection master;
  72. --error 1105
  73. set global time_zone='MET';
  74. # Clean up
  75. drop table t1, t2;
  76. sync_slave_with_master;
  77. # End of 4.1 tests