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

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # This test is a bit tricky as we can't use backup table to overwrite an old
  3. # table
  4. #
  5. connect (con1,localhost,root,,);
  6. connect (con2,localhost,root,,);
  7. connection con1;
  8. set SQL_LOG_BIN=0;
  9. --disable_warnings
  10. drop table if exists t1, t2, t3;
  11. --enable_warnings
  12. create table t4(n int);
  13. --replace_result "errno: 1" "errno: X" "errno: 2" "errno: X" "errno: 22" "errno: X" "errno: 23" "errno: X"
  14. backup table t4 to '../bogus';
  15. backup table t4 to '../tmp';
  16. --replace_result "errno: 7" "errno: X" "errno: 17" "errno: X"
  17. backup table t4 to '../tmp';
  18. drop table t4;
  19. restore table t4 from '../tmp';
  20. select count(*) from t4;
  21. create table t1(n int);
  22. insert into t1 values (23),(45),(67);
  23. backup table t1 to '../tmp';
  24. drop table t1;
  25. restore table t1 from '../bogus';
  26. restore table t1 from '../tmp';
  27. select n from t1;
  28. create table t2(m int not null primary key);
  29. create table t3(k int not null primary key);
  30. insert into t2 values (123),(145),(167);
  31. insert into t3 values (223),(245),(267);
  32. backup table t2,t3 to '../tmp';
  33. drop table t1,t2,t3;
  34. restore table t1,t2,t3 from '../tmp';
  35. select n from t1;
  36. select m from t2;
  37. select k from t3;
  38. drop table t1,t2,t3,t4;
  39. restore table t1 from '../tmp';
  40. connection con2;
  41. rename table t1 to t5;
  42. --send
  43. lock tables t5 write;
  44. connection con1;
  45. --send
  46. backup table t5 to '../tmp';
  47. connection con2;
  48. reap;
  49. unlock tables;
  50. connection con1;
  51. reap;
  52. drop table t5;
  53. # End of 4.1 tests