~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/group_min_max.result

  • Committer: Brian Aker
  • Date: 2009-06-16 00:53:22 UTC
  • mto: This revision was merged to the branch mainline in revision 1094.
  • Revision ID: brian@gaz-20090616005322-w0ode4jul9z8s2y9
Partial fix for tests for tmp

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
drop table if exists t1;
2
 
create table t1 (
 
2
create TEMPORARY table t1 (
3
3
a1 char(64), a2 char(64), b char(16), c char(16) not null, d char(16), dummy char(64) default ' '
4
4
) ENGINE=MYISAM;
5
5
insert into t1 (a1, a2, b, c, d) values
42
42
Table   Op      Msg_type        Msg_text
43
43
test.t1 analyze status  Table is already up to date
44
44
drop table if exists t2;
45
 
create table t2 (
 
45
create TEMPORARY table t2 (
46
46
a1 char(64), a2 char(64) not null, b char(16), c char(16), d char(16), dummy char(64) default ' '
47
47
) ENGINE=MYISAM;
48
48
insert into t2 select * from t1;
70
70
Table   Op      Msg_type        Msg_text
71
71
test.t2 analyze status  Table is already up to date
72
72
drop table if exists t3;
73
 
create table t3 (
 
73
create TEMPORARY table t3 (
74
74
a1 char(1), a2 char(1), b char(1), c char(4) not null, d char(3), dummy char(1) default ' '
75
75
) ENGINE=MYISAM;
76
76
insert into t3 (a1, a2, b, c, d) values
1836
1836
c
1837
1837
d
1838
1838
drop table t1,t2,t3;
1839
 
create table t1 (c1 int not null,c2 int not null, primary key(c1,c2)) ENGINE=MYISAM;
 
1839
create TEMPORARY table t1 (c1 int not null,c2 int not null, primary key(c1,c2)) ENGINE=MYISAM;
1840
1840
insert into t1 (c1,c2) values
1841
1841
(10,1),(10,2),(10,3),(20,4),(20,5),(20,6),(30,7),(30,8),(30,9);
1842
1842
select distinct c1, c2 from t1 order by c2;