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

MySQL数据库

开发平台:

Visual C++

  1. -- source include/have_innodb.inc
  2. -- source include/have_query_cache.inc
  3. # Initialise
  4. --disable_warnings
  5. drop table if exists t1,t2,t3;
  6. --enable_warnings
  7. #
  8. # Without auto_commit.
  9. #
  10. flush status;
  11. set autocommit=0;
  12. create table t1 (a int not null) engine=innodb;
  13. insert into t1 values (1),(2),(3);
  14. select * from t1;
  15. show status like "Qcache_queries_in_cache";
  16. drop table t1;
  17. commit;
  18. set autocommit=1;
  19. begin;
  20. create table t1 (a int not null) engine=innodb;
  21. insert into t1 values (1),(2),(3);
  22. select * from t1;
  23. show status like "Qcache_queries_in_cache";
  24. drop table t1;
  25. commit;
  26. create table t1 (a int not null) engine=innodb;
  27. create table t2 (a int not null) engine=innodb;
  28. create table t3 (a int not null) engine=innodb;
  29. insert into t1 values (1),(2);
  30. insert into t2 values (1),(2);
  31. insert into t3 values (1),(2);
  32. select * from t1;
  33. select * from t2;
  34. select * from t3;
  35. show status like "Qcache_queries_in_cache";
  36. show status like "Qcache_hits";
  37. begin;
  38. select * from t1;
  39. select * from t2;
  40. select * from t3;
  41. show status like "Qcache_queries_in_cache";
  42. show status like "Qcache_hits";
  43. insert into t1 values (3);
  44. insert into t2 values (3);
  45. insert into t1 values (4);
  46. select * from t1;
  47. select * from t2;
  48. select * from t3;
  49. show status like "Qcache_queries_in_cache";
  50. show status like "Qcache_hits";
  51. commit;
  52. show status like "Qcache_queries_in_cache";
  53. drop table t3,t2,t1;
  54. CREATE TABLE t1 (id int(11) NOT NULL auto_increment, PRIMARY KEY  (id)) ENGINE=InnoDB;
  55. select count(*) from t1;
  56. insert into t1 (id) values (0);
  57. select count(*) from t1;
  58. drop table t1;
  59. #
  60. # one statement roll back inside transation
  61. #
  62. set GLOBAL query_cache_size=1355776;
  63. CREATE TABLE t1 ( id int(10) NOT NULL auto_increment, a varchar(25) default NULL, PRIMARY KEY  (id), UNIQUE KEY a (a)) ENGINE=innodb;
  64. CREATE TABLE t2 ( id int(10) NOT NULL auto_increment, b varchar(25) default NULL, PRIMARY KEY  (id), UNIQUE KEY b (b)) ENGINE=innodb;
  65. CREATE TABLE t3 ( id int(10) NOT NULL auto_increment, t1_id int(10) NOT NULL default '0', t2_id int(10) NOT NULL default '0', state int(11) default NULL, PRIMARY KEY  (id), UNIQUE KEY t1_id (t1_id,t2_id), KEY t2_id (t2_id,t1_id), CONSTRAINT `t3_ibfk_1` FOREIGN KEY (`t1_id`) REFERENCES `t1` (`id`), CONSTRAINT `t3_ibfk_2` FOREIGN KEY (`t2_id`) REFERENCES `t2` (`id`)) ENGINE=innodb;
  66. INSERT INTO t1 VALUES (1,'me');
  67. INSERT INTO t2 VALUES (1,'you');
  68. INSERT INTO t3 VALUES (2,1,1,2);
  69. delete from t3 where t1_id = 1 and t2_id = 1;
  70. select t1.* from t1, t2, t3 where t3.state & 1 = 0 and t3.t1_id = t1.id and t3.t2_id = t2.id and t1.id = 1 order by t1.a asc;
  71. begin;
  72. insert into t3 VALUES ( NULL, 1, 1, 2 );
  73. -- error 1062
  74. insert into t3 VALUES ( NULL, 1, 1, 2 );
  75. commit;
  76. select t1.* from t1, t2, t3 where t3.state & 1 = 0 and t3.t1_id = t1.id and t3.t2_id = t2.id and t1.id = 1 order by t1.a asc;
  77. drop table t3,t2,t1;
  78. # End of 4.1 tests