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

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Test of lock tables
  3. #
  4. --disable_warnings
  5. drop table if exists t1,t2;
  6. --enable_warnings
  7. create table t1 ( n int auto_increment primary key);
  8. lock tables t1 write;
  9. insert into t1 values(NULL);
  10. unlock tables;
  11. check table t1;
  12. lock tables t1 write, t1 as t0 read;
  13. insert into t1 values(NULL);
  14. unlock tables;
  15. check table t1;
  16. lock tables t1 write, t1 as t0 read, t1 as t2 read;
  17. insert into t1 values(NULL);
  18. unlock tables;
  19. check table t1;
  20. lock tables t1 write, t1 as t0 write, t1 as t2 read;
  21. insert into t1 values(NULL);
  22. unlock tables;
  23. check table t1;
  24. lock tables t1 write, t1 as t0 write, t1 as t2 read, t1 as t3 read;
  25. insert into t1 values(NULL);
  26. unlock tables;
  27. check table t1;
  28. lock tables t1 write, t1 as t0 write, t1 as t2 write;
  29. insert into t1 values(NULL);
  30. unlock tables;
  31. check table t1;
  32. drop table t1;
  33. #
  34. # Test of locking and delete of files
  35. #
  36. CREATE TABLE t1 (a int);
  37. CREATE TABLE t2 (a int);
  38. lock tables t1 write,t1 as b write, t2 write, t2 as c read;
  39. drop table t1,t2;
  40. CREATE TABLE t1 (a int);
  41. CREATE TABLE t2 (a int);
  42. lock tables t1 write,t1 as b write, t2 write, t2 as c read;
  43. drop table t2,t1;
  44. unlock tables;
  45. # End of 4.1 tests