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

MySQL数据库

开发平台:

Visual C++

  1. -- source include/have_innodb.inc
  2. #
  3. # test of HANDLER ...
  4. #
  5. --disable_warnings
  6. drop table if exists t1,t2;
  7. --enable_warnings
  8. create table t1 (a int, b char(10), key a(a), key b(a,b)) engine=innodb;
  9. insert into t1 values
  10. (17,"ddd"),(18,"eee"),(19,"fff"),(19,"yyy"),
  11. (14,"aaa"),(15,"bbb"),(16,"ccc"),(16,"xxx"),
  12. (20,"ggg"),(21,"hhh"),(22,"iii");
  13. handler t1 open as t2;
  14. handler t2 read a first;
  15. handler t2 read a next;
  16. handler t2 read a next;
  17. handler t2 read a prev;
  18. handler t2 read a last;
  19. handler t2 read a prev;
  20. handler t2 read a prev;
  21. handler t2 read a first;
  22. handler t2 read a prev;
  23. handler t2 read a last;
  24. handler t2 read a prev;
  25. handler t2 read a next;
  26. handler t2 read a next;
  27. handler t2 read a=(15);
  28. handler t2 read a=(16);
  29. --error 1070
  30. handler t2 read a=(19,"fff");
  31. handler t2 read b=(19,"fff");
  32. handler t2 read b=(19,"yyy");
  33. handler t2 read b=(19);
  34. --error 1109
  35. handler t1 read a last;
  36. handler t2 read a=(11);
  37. handler t2 read a>=(11);
  38. handler t2 read a=(18);
  39. handler t2 read a>=(18);
  40. handler t2 read a>(18);
  41. handler t2 read a<=(18);
  42. handler t2 read a<(18);
  43. handler t2 read a first limit 5;
  44. handler t2 read a next  limit 3;
  45. handler t2 read a prev  limit 10;
  46. handler t2 read a>=(16) limit 4;
  47. handler t2 read a>=(16) limit 2,2;
  48. handler t2 read a last  limit 3;
  49. handler t2 read a=(19);
  50. handler t2 read a=(19) where b="yyy";
  51. handler t2 read first;
  52. handler t2 read next;
  53. --error 1064
  54. handler t2 read last;
  55. handler t2 close;
  56. handler t1 open;
  57. handler t1 read a next; # this used to crash as a bug#5373
  58. handler t1 read a next;
  59. handler t1 close;
  60. handler t1 open;
  61. handler t1 read a prev; # this used to crash as a bug#5373
  62. handler t1 read a prev;
  63. handler t1 close;
  64. handler t1 open as t2;
  65. handler t2 read first;
  66. alter table t1 engine=innodb;
  67. --error 1109
  68. handler t2 read first;
  69. drop table t1;
  70. CREATE TABLE t1 (  no1 smallint(5) NOT NULL default '0',  no2 int(10) NOT NULL default '0',  PRIMARY KEY  (no1,no2)) ENGINE=InnoDB;
  71. INSERT INTO t1 VALUES (1,274),(1,275),(2,6),(2,8),(4,1),(4,2);
  72. HANDLER t1 OPEN;
  73. HANDLER t1 READ `primary` = (1, 1000);
  74. HANDLER t1 READ `primary` PREV;
  75. DROP TABLE t1;
  76. # End of 4.1 tests