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

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Test forced timestamp
  3. #
  4. source include/master-slave.inc;
  5. # Don't log table creating to the slave as we want to test LOAD TABLE
  6. set SQL_LOG_BIN=0,timestamp=200006;
  7. create table t1(t timestamp not null,a char(1));
  8. insert into t1 ( a) values ('F');
  9. select unix_timestamp(t) from t1;
  10. connection slave;
  11. load table t1 from master;
  12. select unix_timestamp(t) from t1;
  13. # Delete the created table on master and slave
  14. connection master;
  15. set SQL_LOG_BIN=1,timestamp=default;
  16. drop table t1;
  17. save_master_pos;
  18. connection slave;
  19. sync_with_master;
  20. connection master;
  21. #
  22. # Test copying table with checksum
  23. #
  24. # Don't log table creating to the slave as we want to test LOAD TABLE
  25. set SQL_LOG_BIN=0;
  26. CREATE TABLE t1 (
  27.  a int not null
  28. ) ENGINE=MyISAM MAX_ROWS=4000 CHECKSUM=1;
  29. INSERT INTO t1 VALUES (1);
  30. save_master_pos;
  31. connection slave;
  32. sync_with_master;
  33. load table t1 from master;
  34. check table t1;
  35. drop table t1;
  36. connection master;
  37. drop table t1;
  38. save_master_pos;
  39. connection slave;
  40. sync_with_master;
  41. # End of 4.1 tests