~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/func_group.test

  • Committer: Monty Taylor
  • Date: 2010-09-28 07:45:44 UTC
  • mto: (1799.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1800.
  • Revision ID: mordred@inaugust.com-20100928074544-s3ujnv6s8wro74l2
Added BSD copying file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
128
128
 
129
129
insert into t2 values('AAA', 10, 0.5);
130
130
insert into t2 values('BBB', 20, 1.0);
 
131
--sorted_result
131
132
select t1.a1, t1.a2, t2.a1, t2.a2 from t1,t2;
132
133
 
133
134
select max(t1.a1), max(t2.a1) from t1, t2 where t2.a2=9;
354
355
#select Case When Count(*) < MAX_REQ Then 1 Else 0 End from t1 where t1.USR_ID = 1 group by MAX_REQ;
355
356
#drop table t1;
356
357
 
357
 
 
358
 
create table t1 (a char(10));
359
 
insert into t1 values ('a'),('b'),('c');
360
 
select coercibility(max(a)) from t1;
361
 
drop table t1;
362
 
 
363
358
#
364
359
# Bug #6658 MAX(column) returns incorrect coercibility
365
360
#
635
630
CREATE TABLE t2 (a INT PRIMARY KEY, b INT);
636
631
INSERT INTO t2 VALUES (1,1), (3,3);
637
632
 
 
633
--sorted_result
638
634
SELECT 
639
635
  (SELECT SUM(c.a) FROM t1 ttt, t2 ccc 
640
636
   WHERE ttt.a = ccc.b AND ttt.a = t.a GROUP BY ttt.a) AS minid