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

MySQL数据库

开发平台:

Visual C++

  1. -- source include/have_innodb.inc
  2. --disable_warnings
  3. drop table if exists t1,t2,t3;
  4. --enable_warnings
  5. #
  6. # key field overflow test
  7. #
  8. CREATE TABLE t1
  9. (
  10. FOLDERID VARCHAR(32)BINARY NOT NULL
  11. , FOLDERNAME VARCHAR(255)BINARY NOT NULL
  12. , CREATOR VARCHAR(255)BINARY
  13. , CREATED TIMESTAMP NOT NULL
  14. , DESCRIPTION VARCHAR(255)BINARY
  15. , FOLDERTYPE INTEGER NOT NULL
  16. , MODIFIED TIMESTAMP
  17. , MODIFIER VARCHAR(255)BINARY
  18. , FOLDERSIZE INTEGER NOT NULL
  19. , PARENTID VARCHAR(32)BINARY
  20. , REPID VARCHAR(32)BINARY
  21. , ORIGINATOR INTEGER
  22. , PRIMARY KEY ( FOLDERID )
  23. ) ENGINE=InnoDB;
  24. CREATE INDEX FFOLDERID_IDX ON t1 (FOLDERID);
  25. CREATE INDEX CMFLDRPARNT_IDX ON t1 (PARENTID);
  26. INSERT INTO t1 VALUES("0c9aab05b15048c59bc35c8461507deb", "System", "System", "2003-06-05 16:30:00", "The system content repository folder.", "3", "2003-06-05 16:30:00", "System", "0", NULL, "9c9aab05b15048c59bc35c8461507deb", "1");
  27. INSERT INTO t1 VALUES("2f6161e879db43c1a5b82c21ddc49089", "Default", "System", "2003-06-09 10:52:02", "The default content repository folder.", "3", "2003-06-05 16:30:00", "System", "0", NULL, "03eea05112b845949f3fd03278b5fe43", "1");
  28. INSERT INTO t1 VALUES("c373e9f5ad0791724315444553544200", "AddDocumentTest", "admin", "2003-06-09 10:51:25", "Movie Reviews", "0", "2003-06-09 10:51:25", "admin", "0", "2f6161e879db43c1a5b82c21ddc49089", "03eea05112b845949f3fd03278b5fe43", NULL);
  29. SELECT 'c373e9f5ad0791a0dab5444553544200' IN(SELECT t1.FOLDERID FROM t1 WHERE t1.PARENTID='2f6161e879db43c1a5b82c21ddc49089' AND t1.FOLDERNAME = 'Level1');
  30. drop table t1;
  31. #
  32. # UNION unlocking test
  33. #
  34. create table t1 (a int) engine=innodb;
  35. create table t2 (a int) engine=innodb;
  36. create table t3 (a int) engine=innodb;
  37. insert into t1 values (1),(2),(3),(4);
  38. insert into t2 values (10),(20),(30),(40);
  39. insert into t3 values (1),(2),(10),(50);
  40. select a from t3 where t3.a in (select a from t1 where a <= 3 union select * from t2 where a <= 30);
  41. drop table t1,t2,t3;
  42. CREATE TABLE t1 (
  43.    processor_id INTEGER NOT NULL,
  44.    PRIMARY KEY (processor_id)
  45. ) ENGINE=InnoDB;
  46. CREATE TABLE t3 (
  47.    yod_id BIGINT UNSIGNED AUTO_INCREMENT NOT NULL,
  48.    login_processor INTEGER UNSIGNED ,
  49.    PRIMARY KEY (yod_id)
  50. ) ENGINE=InnoDB;
  51. CREATE TABLE t2 (
  52.    processor_id INTEGER NOT NULL,
  53.    yod_id BIGINT UNSIGNED NOT NULL,
  54.    PRIMARY KEY (processor_id, yod_id),
  55.    INDEX (processor_id),
  56.    INDEX (yod_id),
  57.    FOREIGN KEY (processor_id) REFERENCES t1(processor_id),
  58.    FOREIGN KEY (yod_id) REFERENCES t3(yod_id) 
  59. ) ENGINE=InnoDB;
  60. INSERT INTO t1 VALUES (1),(2),(3);
  61. INSERT INTO t3 VALUES (1,1),(2,2),(3,3);
  62. INSERT INTO t2 VALUES (1,1),(2,2),(3,3);
  63. SELECT distinct p1.processor_id, (SELECT y.yod_id FROM t1 p2, t2 y WHERE p2.processor_id = p1.processor_id and p2.processor_id = y.processor_id) FROM t1 p1;
  64. drop table t2,t1,t3;
  65. #
  66. # innodb locking
  67. #
  68. CREATE TABLE t1 (
  69.   id int(11) NOT NULL default '0',
  70.   b int(11) default NULL,
  71.   c char(3) default NULL,
  72.   PRIMARY KEY  (id),
  73.   KEY t2i1 (b)
  74. ) ENGINE=innodb DEFAULT CHARSET=latin1;
  75. INSERT INTO t1 VALUES (0,0,'GPL'),(1,0,'GPL'),(2,1,'GPL'),(3,2,'GPL');
  76. CREATE TABLE t2 (
  77.   id int(11) NOT NULL default '0',
  78.   b int(11) default NULL,
  79.   c char(3) default NULL,
  80.   PRIMARY KEY  (id),
  81.   KEY t2i (b)
  82. ) ENGINE=innodb DEFAULT CHARSET=latin1;
  83. INSERT INTO t2 VALUES (0,0,'GPL'),(1,0,'GPL'),(2,1,'GPL'),(3,2,'GPL');
  84. select (select max(id) from t2 where b=1 group by b) as x,b from t1 where b=1;
  85. drop table t1,t2;
  86. #
  87. # reiniting innodb tables
  88. #
  89. create table t1 (id int not null, value char(255), primary key(id)) engine=innodb;
  90. create table t2 (id int not null, value char(255)) engine=innodb;
  91. insert into t1 values (1,'a'),(2,'b');
  92. insert into t2 values (1,'z'),(2,'x');
  93. select t2.id,t2.value,(select t1.value from t1 where t1.id=t2.id) from t2;
  94. select t2.id,t2.value,(select t1.value from t1 where t1.id=t2.id) from t2;
  95. drop table t1,t2;
  96. #
  97. # unlocking tables with subqueries in HAVING
  98. #
  99. create table t1 (a int, b int) engine=innodb;
  100. insert into t1 values (1,2), (1,3), (2,3), (2,4), (2,5), (3,4), (4,5), (4,100);
  101. create table t2 (a int) engine=innodb;
  102. insert into t2 values (1),(2),(3),(4);
  103. select a, sum(b) as b from t1 group by a having b > (select max(a) from t2);
  104. drop table t1, t2;
  105. #
  106. # bug #5220 test suite
  107. #
  108. CREATE TABLE `t1` ( `unit` varchar(50) NOT NULL default '', `ingredient` varchar(50) NOT NULL default '') ENGINE=InnoDB DEFAULT CHARSET=latin1;
  109. CREATE TABLE `t2` ( `ingredient` varchar(50) NOT NULL default '', `unit` varchar(50) NOT NULL default '', PRIMARY KEY (ingredient, unit)) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  110. INSERT INTO `t1` VALUES ('xx','yy');
  111. INSERT INTO `t2` VALUES ('yy','xx');
  112. SELECT R.unit, R.ingredient FROM t1 R WHERE R.ingredient IN (SELECT N.ingredient FROM t2 N WHERE N.unit = R.unit);
  113. drop table t1, t2;
  114. #
  115. # possible early unlock
  116. #
  117. CREATE TABLE t1 (
  118.   id INT NOT NULL auto_increment,
  119.   date1 DATE, coworkerid INT,
  120.   description VARCHAR(255),
  121.   sum_used DOUBLE,
  122.   sum_remaining DOUBLE,
  123.   comments VARCHAR(255),
  124.   PRIMARY KEY(id)
  125. ) engine=innodb;
  126. insert into t1 values (NULL, '1999-01-01', 1,'test', 22, 33, 'comment'), (NULL, '1999-01-01', 1,'test', 22, 33, 'comment'), (NULL, '1999-01-01', 1,'test', 22, 33, 'comment'), (NULL, '1998-01-01', 1,'test', 22, 33, 'comment'), (NULL, '1998-01-01', 1,'test', 22, 33, 'comment'), (NULL, '2004-01-01', 1,'test', 22, 33, 'comment'), (NULL, '2004-01-01', 1,'test', 22, 33, 'comment');
  127. SELECT DISTINCT
  128.  (SELECT sum(sum_used) FROM t1 WHERE sum_used > 0 AND year(date1) <= '2004') as somallontvangsten,
  129.  (SELECT sum(sum_used) FROM t1 WHERE sum_used < 0 AND year(date1) <= '2004') as somalluitgaven
  130.  FROM t1;
  131. select * from t1;
  132. drop table t1;
  133. #
  134. # cleaning up of results of subselects (BUG#8125)
  135. #
  136. CREATE TABLE `t1` ( `a` char(3) NOT NULL default '', `b` char(3) NOT NULL default '', `c` char(3) NOT NULL default '', PRIMARY KEY  (`a`,`b`,`c`)) ENGINE=InnoDB;
  137. CREATE TABLE t2 LIKE t1;
  138. INSERT INTO t1 VALUES (1,1,1);
  139. INSERT INTO t2 VALUES (1,1,1);
  140. PREPARE my_stmt FROM "SELECT t1.b, count(*) FROM t1 group by t1.b having
  141. count(*) > ALL (SELECT COUNT(*) FROM t2 WHERE t2.a=1 GROUP By t2.b)";
  142. EXECUTE my_stmt;
  143. EXECUTE my_stmt;
  144. deallocate prepare my_stmt;
  145. drop table t1,t2;
  146. # End of 4.1 tests