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

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # simple test of all group functions
  3. #
  4. --source include/have_innodb.inc
  5. --disable_warnings
  6. drop table if exists t1,t2;
  7. --enable_warnings
  8. create table t1 (grp int, a bigint unsigned, c char(10) not null);
  9. insert into t1 values (1,1,"a");
  10. insert into t1 values (2,2,"b");
  11. insert into t1 values (2,3,"c");
  12. insert into t1 values (3,4,"E");
  13. insert into t1 values (3,5,"C");
  14. insert into t1 values (3,6,"D");
  15. # Test of MySQL field extension with and without matching records.
  16. select a,c,sum(a) from t1 group by a;
  17. select a,c,sum(a) from t1 where a > 10 group by a;
  18. select sum(a) from t1 where a > 10;
  19. select a from t1 order by rand(10);
  20. select distinct a from t1 order by rand(10);
  21. select count(distinct a),count(distinct grp) from t1;
  22. insert into t1 values (null,null,'');
  23. select count(distinct a),count(distinct grp) from t1;
  24. select sum(all a),count(all a),avg(all a),std(all a),variance(all a),bit_or(all a),bit_and(all a),min(all a),max(all a),min(all c),max(all c) from t1;
  25. select grp, sum(a),count(a),avg(a),std(a),variance(a),bit_or(a),bit_and(a),min(a),max(a),min(c),max(c) from t1 group by grp;
  26. select grp, sum(a)+count(a)+avg(a)+std(a)+variance(a)+bit_or(a)+bit_and(a)+min(a)+max(a)+min(c)+max(c) as sum from t1 group by grp;
  27. create table t2 (grp int, a bigint unsigned, c char(10));
  28. insert into t2 select grp,max(a)+max(grp),max(c) from t1 group by grp;
  29. # REPLACE ... SELECT doesn't yet work with PS
  30. --disable_ps_protocol
  31. replace into t2 select grp, a, c from t1 limit 2,1;
  32. --enable_ps_protocol
  33. select * from t2;
  34. drop table t1,t2;
  35. #
  36. # Problem with std()
  37. #
  38. CREATE TABLE t1 (id int(11),value1 float(10,2));
  39. INSERT INTO t1 VALUES (1,0.00),(1,1.00), (1,2.00), (2,10.00), (2,11.00), (2,12.00); 
  40. CREATE TABLE t2 (id int(11),name char(20)); 
  41. INSERT INTO t2 VALUES (1,'Set One'),(2,'Set Two'); 
  42. select id, avg(value1), std(value1), variance(value1) from t1 group by id;
  43. select name, avg(value1), std(value1), variance(value1) from t1, t2 where t1.id = t2.id group by t1.id;
  44. drop table t1,t2;
  45. #
  46. # Test of bug in left join & avg
  47. #
  48. create table t1 (id int not null);
  49. create table t2 (id int not null,rating int null);
  50. insert into t1 values(1),(2),(3);
  51. insert into t2 values(1, 3),(2, NULL),(2, NULL),(3, 2),(3, NULL);
  52. select t1.id, avg(rating) from t1 left join t2 on ( t1.id = t2.id ) group by t1.id;
  53. drop table t1,t2;
  54. #
  55. # test of count
  56. #
  57. create table t1 (a smallint(6) primary key, c char(10), b text);
  58. INSERT INTO t1 VALUES (1,'1','1');
  59. INSERT INTO t1 VALUES (2,'2','2');
  60. INSERT INTO t1 VALUES (4,'4','4');
  61. select count(*) from t1;
  62. select count(*) from t1 where a = 1;
  63. select count(*) from t1 where a = 100;
  64. select count(*) from t1 where a >= 10;
  65. select count(a) from t1 where a = 1;
  66. select count(a) from t1 where a = 100;
  67. select count(a) from t1 where a >= 10;
  68. select count(b) from t1 where b >= 2;
  69. select count(b) from t1 where b >= 10;
  70. select count(c) from t1 where c = 10;
  71. drop table t1;
  72. #
  73. # Test of bug in COUNT(i)*(i+0)
  74. #
  75. CREATE TABLE t1 (d DATETIME, i INT);
  76. INSERT INTO t1 VALUES (NOW(), 1);
  77. SELECT COUNT(i), i, COUNT(i)*i FROM t1 GROUP BY i;
  78. SELECT COUNT(i), (i+0), COUNT(i)*(i+0) FROM t1 GROUP BY i; 
  79. DROP TABLE t1;
  80. #
  81. # Another SUM() problem with 3.23.2
  82. #
  83. create table t1 (
  84.         num float(5,2),
  85.         user char(20)
  86. );
  87. insert into t1 values (10.3,'nem'),(20.53,'monty'),(30.23,'sinisa');
  88. insert into t1 values (30.13,'nem'),(20.98,'monty'),(10.45,'sinisa');
  89. insert into t1 values (5.2,'nem'),(8.64,'monty'),(11.12,'sinisa');
  90. select sum(num) from t1;
  91. select sum(num) from t1 group by user;
  92. drop table t1;
  93. #
  94. # Test problem with MIN() optimization in case of null values
  95. #
  96. create table t1 (a1 int, a2 char(3), key k1(a1), key k2(a2));
  97. insert into t1 values(10,'aaa'), (10,null), (10,'bbb'), (20,'zzz');
  98. create table t2(a1 char(3), a2 int, a3 real, key k1(a1), key k2(a2, a1));
  99. select * from t1;
  100. # The following returned NULL in 4.0.10
  101. select min(a2) from t1;
  102. select max(t1.a1), max(t2.a2) from t1, t2;
  103. select max(t1.a1) from t1, t2;
  104. select max(t2.a2), max(t1.a1) from t1, t2;
  105. explain select min(a2) from t1;
  106. explain select max(t1.a1), max(t2.a2) from t1, t2;
  107. insert into t2 values('AAA', 10, 0.5);
  108. insert into t2 values('BBB', 20, 1.0);
  109. select t1.a1, t1.a2, t2.a1, t2.a2 from t1,t2;
  110. select max(t1.a1), max(t2.a1) from t1, t2 where t2.a2=9;
  111. select max(t2.a1), max(t1.a1) from t1, t2 where t2.a2=9;
  112. select t1.a1, t1.a2, t2.a1, t2.a2 from t1 left outer join t2 on t1.a1=10;
  113. select max(t1.a2) from t1 left outer join t2 on t1.a1=10;
  114. select max(t2.a1) from t2 left outer join t1 on t2.a2=10 where t2.a2=20;
  115. select max(t2.a1) from t2 left outer join t1 on t2.a2=10 where t2.a2=10;
  116. select max(t2.a1) from t1 left outer join t2 on t1.a2=t2.a1 and 1=0 where t2.a1='AAA';
  117. select max(t1.a2),max(t2.a1) from t1 left outer join t2 on t1.a1=10;
  118. drop table t1,t2;
  119. #
  120. # Test of group function and NULL values
  121. #
  122. CREATE TABLE t1 (a int, b int);
  123. select count(b), sum(b), avg(b), std(b), min(b), max(b), bit_and(b), bit_or(b) from t1;
  124. select a,count(b), sum(b), avg(b), std(b), min(b), max(b), bit_and(b), bit_or(b) from t1 group by a;
  125. insert into t1 values (1,null);
  126. select a,count(b), sum(b), avg(b), std(b), min(b), max(b), bit_and(b), bit_or(b) from t1 group by a;
  127. insert into t1 values (1,null);
  128. insert into t1 values (2,null);
  129. select a,count(b), sum(b), avg(b), std(b), min(b), max(b), bit_and(b), bit_or(b) from t1 group by a;
  130. select SQL_BIG_RESULT a,count(b), sum(b), avg(b), std(b), min(b), max(b), bit_and(b), bit_or(b) from t1 group by a;
  131. insert into t1 values (2,1);
  132. select a,count(b), sum(b), avg(b), std(b), min(b), max(b), bit_and(b), bit_or(b) from t1 group by a;
  133. select SQL_BIG_RESULT a,count(b), sum(b), avg(b), std(b), min(b), max(b), bit_and(b), bit_or(b) from t1 group by a;
  134. insert into t1 values (3,1);
  135. select a,count(b), sum(b), avg(b), std(b), min(b), max(b), bit_and(b), bit_or(b) from t1 group by a;
  136. select SQL_BIG_RESULT a,count(b), sum(b), avg(b), std(b), min(b), max(b), bit_and(b), bit_or(b), bit_xor(b) from t1 group by a;
  137. explain extended select SQL_BIG_RESULT a,count(b), sum(b), avg(b), std(b), min(b), max(b), bit_and(b), bit_or(b), bit_xor(b) from t1 group by a;
  138. drop table t1;
  139. #
  140. # Bug #1972: test for bit_and(), bit_or() and negative values
  141. create table t1 (col int);
  142. insert into t1 values (-1), (-2), (-3);
  143. select bit_and(col), bit_or(col) from t1;
  144. select SQL_BIG_RESULT bit_and(col), bit_or(col) from t1 group by col;
  145. drop table t1;
  146. #
  147. # Bug #3376: avg() and an empty table
  148. #
  149. create table t1 (a int);
  150. select avg(2) from t1;
  151. drop table t1;
  152. #
  153. # Tests to check MIN/MAX query optimization
  154. #
  155. # Create database schema
  156. create table t1(
  157.   a1 char(3) primary key,
  158.   a2 smallint,
  159.   a3 char(3),
  160.   a4 real,
  161.   a5 date,
  162.   key k1(a2,a3),
  163.   key k2(a4 desc,a1),
  164.   key k3(a5,a1)
  165. );
  166. create table t2(
  167.   a1 char(3) primary key,
  168.   a2 char(17),
  169.   a3 char(2),
  170.   a4 char(3),
  171.   key k1(a3, a2),
  172.   key k2(a4)
  173. );
  174. # Populate table t1
  175. insert into t1 values('AME',0,'SEA',0.100,date'1942-02-19');
  176. insert into t1 values('HBR',1,'SEA',0.085,date'1948-03-05');
  177. insert into t1 values('BOT',2,'SEA',0.085,date'1951-11-29');
  178. insert into t1 values('BMC',3,'SEA',0.085,date'1958-09-08');
  179. insert into t1 values('TWU',0,'LAX',0.080,date'1969-10-05');
  180. insert into t1 values('BDL',0,'DEN',0.080,date'1960-11-27');
  181. insert into t1 values('DTX',1,'NYC',0.080,date'1961-05-04');
  182. insert into t1 values('PLS',1,'WDC',0.075,date'1949-01-02');
  183. insert into t1 values('ZAJ',2,'CHI',0.075,date'1960-06-15');
  184. insert into t1 values('VVV',2,'MIN',0.075,date'1959-06-28');
  185. insert into t1 values('GTM',3,'DAL',0.070,date'1977-09-23');
  186. insert into t1 values('SSJ',null,'CHI',null,date'1974-03-19');
  187. insert into t1 values('KKK',3,'ATL',null,null);
  188. insert into t1 values('XXX',null,'MIN',null,null);
  189. # Populate table t2
  190. insert into t2 values('TKF','Seattle','WA','AME');
  191. insert into t2 values('LCC','Los Angeles','CA','TWU');
  192. insert into t2 values('DEN','Denver','CO','BDL');
  193. insert into t2 values('SDC','San Diego','CA','TWU');
  194. insert into t2 values('NOL','New Orleans','LA','GTM');
  195. insert into t2 values('LAK','Los Angeles','CA','TWU');
  196. # Show the table contents
  197. select * from t1;
  198. select * from t2;
  199. # Queries with min/max functions 
  200. # which regular min/max optimization are applied to
  201. explain 
  202. select min(a1) from t1;
  203. select min(a1) from t1;
  204. explain 
  205. select max(a4) from t1;
  206. select max(a4) from t1;
  207. explain 
  208. select min(a5), max(a5) from t1;
  209. select min(a5), max(a5) from t1;
  210. explain 
  211. select min(a3) from t1 where a2 = 2;
  212. select min(a3) from t1 where a2 = 2;
  213. explain 
  214. select min(a1), max(a1) from t1 where a4 = 0.080;
  215. select min(a1), max(a1) from t1 where a4 = 0.080;
  216. explain 
  217. select min(t1.a5), max(t2.a3) from t1, t2;
  218. select min(t1.a5), max(t2.a3) from t1, t2;
  219. explain 
  220. select min(t1.a3), max(t2.a2) from t1, t2 where t1.a2 = 0 and t2.a3 = 'CA';
  221. select min(t1.a3), max(t2.a2) from t1, t2 where t1.a2 = 0 and t2.a3 = 'CA';
  222. # Queries with min/max functions 
  223. # which extended min/max optimization are applied to
  224. explain 
  225. select min(a1) from t1 where a1 > 'KKK';
  226. select min(a1) from t1 where a1 > 'KKK';
  227. explain 
  228. select min(a1) from t1 where a1 >= 'KKK';
  229. select min(a1) from t1 where a1 >= 'KKK';
  230. explain 
  231. select max(a3) from t1 where a2 = 2 and a3 < 'SEA';
  232. select max(a3) from t1 where a2 = 2 and a3 < 'SEA';
  233. explain 
  234. select max(a5) from t1 where a5 < date'1970-01-01';
  235. select max(a5) from t1 where a5 < date'1970-01-01';
  236. explain 
  237. select max(a3) from t1 where a2 is null;
  238. select max(a3) from t1 where a2 is null;
  239. explain 
  240. select max(a3) from t1 where a2 = 0 and a3 between 'K' and 'Q';
  241. select max(a3) from t1 where a2 = 0 and a3 between 'K' and 'Q';
  242. explain
  243. select min(a1), max(a1) from t1 where a1 between 'A' and 'P';
  244. select min(a1), max(a1) from t1 where a1 between 'A' and 'P';
  245. explain 
  246. select max(a3) from t1 where a3 < 'SEA' and a2 = 2 and a3 <= 'MIN';
  247. select max(a3) from t1 where a3 < 'SEA' and a2 = 2 and a3 <= 'MIN';
  248. explain 
  249. select max(a3) from t1 where a3 = 'MIN' and a2 = 2;
  250. select max(a3) from t1 where a3 = 'MIN' and a2 = 2;
  251. explain 
  252. select max(a3) from t1 where a3 = 'DEN' and a2 = 2;
  253. select max(a3) from t1 where a3 = 'DEN' and a2 = 2;
  254. explain
  255. select max(t1.a3), min(t2.a2) from t1, t2 where t1.a2 = 2 and t1.a3 < 'MIN' and t2.a3 = 'CA';
  256. select max(t1.a3), min(t2.a2) from t1, t2 where t1.a2 = 2 and t1.a3 < 'MIN' and t2.a3 = 'CA';
  257. explain
  258. select max(a3) from t1 where a2 is null and a2 = 2;
  259. select max(a3) from t1 where a2 is null and a2 = 2;
  260. explain
  261. select max(a2) from t1 where a2 >= 1;
  262. select max(a2) from t1 where a2 >= 1;
  263. explain
  264. select min(a3) from t1 where a2 = 2 and a3 < 'SEA';
  265. select min(a3) from t1 where a2 = 2 and a3 < 'SEA';
  266. explain
  267. select min(a3) from t1 where a2 = 4;
  268. select min(a3) from t1 where a2 = 4;
  269. explain
  270. select min(a3) from t1 where a2 = 2 and a3 > 'SEA';
  271. select min(a3) from t1 where a2 = 2 and a3 > 'SEA';
  272. explain
  273. select (min(a4)+max(a4))/2 from t1;
  274. select (min(a4)+max(a4))/2 from t1;
  275. explain
  276. select min(a3) from t1 where 2 = a2;
  277. select min(a3) from t1 where 2 = a2;
  278. explain
  279. select max(a3) from t1 where a2 = 2 and 'SEA' > a3;
  280. select max(a3) from t1 where a2 = 2 and 'SEA' > a3;
  281. explain
  282. select max(a3) from t1 where a2 = 2 and 'SEA' < a3;
  283. select max(a3) from t1 where a2 = 2 and 'SEA' < a3;
  284. explain
  285. select min(a3) from t1 where a2 = 2 and a3 >= 'CHI';
  286. select min(a3) from t1 where a2 = 2 and a3 >= 'CHI';
  287. explain
  288. select min(a3) from t1 where a2 = 2 and a3 >= 'CHI' and a3 < 'SEA';
  289. select min(a3) from t1 where a2 = 2 and a3 >= 'CHI' and a3 < 'SEA';
  290. explain
  291. select min(a3) from t1 where a2 = 2 and a3 >= 'CHI' and a3 = 'MIN';
  292. select min(a3) from t1 where a2 = 2 and a3 >= 'CHI' and a3 = 'MIN';
  293. explain
  294. select min(a3) from t1 where a2 = 2 and a3 >= 'SEA' and a3 = 'MIN';
  295. select min(a3) from t1 where a2 = 2 and a3 >= 'SEA' and a3 = 'MIN';
  296. explain
  297. select min(t1.a1), min(t2.a4) from t1,t2 where t1.a1 < 'KKK' and t2.a4 < 'KKK';
  298. select min(t1.a1), min(t2.a4) from t1,t2 where t1.a1 < 'KKK' and t2.a4 < 'KKK';
  299. # Queries to which max/min optimization is not applied
  300. explain 
  301. select min(a1) from t1 where a1 > 'KKK' or a1 < 'XXX';
  302. explain 
  303. select min(a1) from t1 where a1 != 'KKK';
  304. explain
  305. select max(a3) from t1 where a2 < 2 and a3 < 'SEA';
  306. explain
  307. select max(t1.a3), min(t2.a2) from t1, t2 where t1.a2 = 2 and t1.a3 < 'MIN' and t2.a3 > 'CA';
  308. explain
  309. select min(a4 - 0.01) from t1;
  310. explain
  311. select max(a4 + 0.01) from t1;
  312. explain
  313. select min(a3) from t1 where (a2 +1 ) is null;
  314. explain
  315. select min(a3) from t1 where (a2 + 1) = 2;
  316. explain
  317. select min(a3) from t1 where 2 = (a2 + 1);
  318. explain
  319. select min(a2) from t1 where a2 < 2 * a2 - 8;
  320. explain
  321. select min(a1) from t1  where a1 between a3 and 'KKK';
  322. explain
  323. select min(a4) from t1  where (a4 + 0.01) between 0.07 and 0.08;
  324. explain
  325. select concat(min(t1.a1),min(t2.a4)) from t1, t2 where t2.a4 <> 'AME';
  326. drop table t1, t2;
  327. --disable_warnings
  328. create table t1 (USR_ID integer not null, MAX_REQ integer not null, constraint PK_SEA_USER primary key (USR_ID)) engine=InnoDB;
  329. --enable_warnings
  330. insert into t1 values (1, 3);
  331. select count(*) + MAX_REQ - MAX_REQ + MAX_REQ - MAX_REQ + MAX_REQ - MAX_REQ + MAX_REQ - MAX_REQ + MAX_REQ - MAX_REQ from t1 group by MAX_REQ;
  332. select Case When Count(*) < MAX_REQ Then 1 Else 0 End from t1 where t1.USR_ID = 1 group by MAX_REQ;
  333. drop table t1;
  334. create table t1 (a char(10));
  335. insert into t1 values ('a'),('b'),('c');
  336. select coercibility(max(a)) from t1;
  337. drop table t1;
  338. #
  339. # Bug #6658 MAX(column) returns incorrect coercibility
  340. #
  341. create table t1 (a char character set latin2);
  342. insert into t1 values ('a'),('b');
  343. select charset(max(a)), coercibility(max(a)),
  344.        charset(min(a)), coercibility(min(a)) from t1;
  345. create table t2 select max(a),min(a) from t1;
  346. show create table t2;
  347. drop table t2,t1;
  348. #
  349. # aggregate functions on static tables
  350. #
  351. create table t1 (a int);
  352. insert into t1 values (1);
  353. select max(a) as b from t1 having b=1;
  354. select a from t1 having a=1;
  355. drop table t1;
  356. #
  357. # Bug #3435: variance(const), stddev(const) and an empty table
  358. #
  359. create table t1 (a int);
  360. select variance(2) from t1;
  361. select stddev(2) from t1;
  362. drop table t1;
  363. #
  364. # cleunup() of optimized away count(*) and max/min
  365. #
  366. create table t1 (a int);
  367. insert into t1 values (1),(2);
  368. prepare stmt1 from 'SELECT COUNT(*) FROM t1';
  369. execute stmt1;
  370. execute stmt1;
  371. execute stmt1;
  372. deallocate prepare stmt1;
  373. drop table t1;
  374. create table t1 (a int, primary key(a));
  375. insert into t1 values (1),(2);
  376. prepare stmt1 from 'SELECT max(a) FROM t1';
  377. execute stmt1;
  378. execute stmt1;
  379. execute stmt1;
  380. deallocate prepare stmt1;
  381. drop table t1;
  382. #
  383. # Bug #5406 min/max optimization for empty set
  384. #
  385. CREATE TABLE t1 (a int primary key);
  386. INSERT INTO t1 VALUES (1),(2),(3),(4);
  387. SELECT MAX(a) FROM t1 WHERE a > 5;
  388. SELECT MIN(a) FROM t1 WHERE a < 0;
  389. DROP TABLE t1;
  390. #
  391. # Bug #5555 GROUP BY enum_field" returns incorrect results
  392. #
  393.  
  394. CREATE TABLE t1 (
  395.   id int(10) unsigned NOT NULL auto_increment,
  396.   val enum('one','two','three') NOT NULL default 'one',
  397.   PRIMARY KEY  (id)
  398. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  399.  
  400. INSERT INTO t1 VALUES
  401. (1,'one'),(2,'two'),(3,'three'),(4,'one'),(5,'two');
  402.  
  403. select val, count(*) from t1 group by val;
  404. drop table t1;
  405. CREATE TABLE t1 (
  406.   id int(10) unsigned NOT NULL auto_increment,
  407.   val set('one','two','three') NOT NULL default 'one',
  408.   PRIMARY KEY  (id)
  409. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  410. INSERT INTO t1 VALUES
  411. (1,'one'),(2,'two'),(3,'three'),(4,'one'),(5,'two');
  412. select val, count(*) from t1 group by val;
  413. drop table t1;
  414. #
  415. # Bug #5615: type of aggregate function column wrong when using group by
  416. #
  417. create table t1(a int, b datetime);
  418. insert into t1 values (1, NOW()), (2, NOW());
  419. create table t2 select MAX(b) from t1 group by a;
  420. show create table t2;
  421. drop table t1, t2;
  422. #
  423. # Bug 7833:  Wrong datatype of aggregate column is returned
  424. #
  425. create table t1(f1 datetime);
  426. insert into t1 values (now());
  427. create table t2 select f2 from (select max(now()) f2 from t1) a;
  428. show columns from t2;
  429. drop table t2;
  430. create table t2 select f2 from (select now() f2 from t1) a;
  431. show columns from t2;
  432. drop table t2, t1;
  433. #
  434. # Bug 8893: wrong result for min/max optimization with 2 indexes
  435. #
  436. CREATE TABLE t1(
  437.   id int PRIMARY KEY,
  438.   a  int,
  439.   b  int,
  440.   INDEX i_b_id(a,b,id),
  441.   INDEX i_id(a,id)
  442. );
  443. INSERT INTO t1 VALUES 
  444.   (1,1,4), (2,2,1), (3,1,3), (4,2,1), (5,1,1);
  445. SELECT MAX(id) FROM t1 WHERE id < 3 AND a=2 AND b=6;
  446. DROP TABLE t1;
  447. # change the order of the last two index definitions
  448. CREATE TABLE t1(
  449.   id int PRIMARY KEY,
  450.   a  int,
  451.   b  int,
  452.   INDEX i_id(a,id),
  453.   INDEX i_b_id(a,b,id)
  454. );
  455. INSERT INTO t1 VALUES 
  456.   (1,1,4), (2,2,1), (3,1,3), (4,2,1), (5,1,1);
  457. SELECT MAX(id) FROM t1 WHERE id < 3 AND a=2 AND b=6;
  458. DROP TABLE t1;
  459. #
  460. # Bug #12882   min/max inconsistent on empty table
  461. #
  462. create table t1m (a int) engine=myisam;
  463. create table t1i (a int) engine=innodb;
  464. create table t2m (a int) engine=myisam;
  465. create table t2i (a int) engine=innodb;
  466. insert into t2m values (5);
  467. insert into t2i values (5);
  468. # test with MyISAM
  469. select min(a) from t1m;
  470. select min(7) from t1m;
  471. select min(7) from DUAL;
  472. explain select min(7) from t2m join t1m;
  473. select min(7) from t2m join t1m;
  474. select max(a) from t1m;
  475. select max(7) from t1m;
  476. select max(7) from DUAL;
  477. explain select max(7) from t2m join t1m;
  478. select max(7) from t2m join t1m;
  479. select 1, min(a) from t1m where a=99;
  480. select 1, min(a) from t1m where 1=99;
  481. select 1, min(1) from t1m where a=99;
  482. select 1, min(1) from t1m where 1=99;
  483. select 1, max(a) from t1m where a=99;
  484. select 1, max(a) from t1m where 1=99;
  485. select 1, max(1) from t1m where a=99;
  486. select 1, max(1) from t1m where 1=99;
  487. # test with InnoDB
  488. select min(a) from t1i;
  489. select min(7) from t1i;
  490. select min(7) from DUAL;
  491. explain select min(7) from t2i join t1i;
  492. select min(7) from t2i join t1i;
  493. select max(a) from t1i;
  494. select max(7) from t1i;
  495. select max(7) from DUAL;
  496. explain select max(7) from t2i join t1i;
  497. select max(7) from t2i join t1i;
  498. select 1, min(a) from t1i where a=99;
  499. select 1, min(a) from t1i where 1=99;
  500. select 1, min(1) from t1i where a=99;
  501. select 1, min(1) from t1i where 1=99;
  502. select 1, max(a) from t1i where a=99;
  503. select 1, max(a) from t1i where 1=99;
  504. select 1, max(1) from t1i where a=99;
  505. select 1, max(1) from t1i where 1=99;
  506. # mixed MyISAM/InnoDB test
  507. explain select count(*), min(7), max(7) from t1m, t1i;
  508. select count(*), min(7), max(7) from t1m, t1i;
  509. explain select count(*), min(7), max(7) from t1m, t2i;
  510. select count(*), min(7), max(7) from t1m, t2i;
  511. explain select count(*), min(7), max(7) from t2m, t1i;
  512. select count(*), min(7), max(7) from t2m, t1i;
  513. drop table t1m, t1i, t2m, t2i;
  514. # End of 4.1 tests