~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/func_group.test

  • Committer: Brian Aker
  • Date: 2009-04-01 01:25:04 UTC
  • mfrom: (968.2.27 mordred)
  • Revision ID: brian@tangent.org-20090401012504-mq9sxcmph5jc1fh6
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
199
199
insert into t2 values('AAA','AAA','AA','AME');
200
200
 
201
201
# Show the table contents
 
202
--sorted_result
202
203
select * from t1;
 
204
--sorted_result
203
205
select * from t2;
204
206
 
205
207
# Queries with min/max functions 
363
365
#
364
366
create table t1 (a char);
365
367
insert into t1 values ('a'),('b');
 
368
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
366
369
show create table t1;
367
370
create table t2 select max(a),min(a) from t1;
 
371
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
368
372
show create table t2;
369
373
drop table t2;
370
374
create table t2 select concat(a) from t1;
 
375
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
371
376
show create table t2;
372
377
drop table t2,t1;
373
378
 
442
447
create table t1(a int, b datetime);
443
448
insert into t1 values (1, NOW()), (2, NOW());
444
449
create table t2 select MAX(b) from t1 group by a;
 
450
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
445
451
show create table t2;
446
452
drop table t1, t2;
447
453
 
612
618
  (3,2,1), (3,2,2), (3,2,3),
613
619
  (3,3,1), (3,3,2), (3,3,3);
614
620
 
 
621
--sorted_result
615
622
SELECT b/c as v, a FROM t1 ORDER BY v;
616
623
SELECT b/c as v, SUM(a) FROM t1 GROUP BY v;
617
624
SELECT SUM(a) FROM t1 GROUP BY b/c;
640
647
#
641
648
 
642
649
create table t1 select variance(0);                                               
 
650
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
643
651
show create table t1;                                                           
644
652
drop table t1;                                                                  
645
653
create table t1 select stddev(0);
 
654
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
646
655
show create table t1;
647
656
drop table t1;
648
657