~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/union.result

  • Committer: Brian Aker
  • Date: 2010-02-15 18:29:31 UTC
  • mto: (1273.13.68 build)
  • mto: This revision was merged to the branch mainline in revision 1303.
  • Revision ID: brian@gaz-20100215182931-ooy48h72plspoehy
More removal of show code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
804
804
FLUSH STATUS;
805
805
show status like 'Slow_queries';
806
806
Variable_name   Value
807
 
Slow_queries    0
 
807
Slow_queries    #
808
808
select count(*) from t1 where a=7;
809
809
count(*)
810
810
26
811
811
show status like 'Slow_queries';
812
812
Variable_name   Value
813
 
Slow_queries    0
 
813
Slow_queries    #
814
814
select count(*) from t1 where b=13;
815
815
count(*)
816
816
10
817
817
show status like 'Slow_queries';
818
818
Variable_name   Value
819
 
Slow_queries    0
 
819
Slow_queries    #
820
820
select count(*) from t1 where b=13 union select count(*) from t1 where a=7;
821
821
count(*)
822
822
10
823
823
26
824
824
show status like 'Slow_queries';
825
825
Variable_name   Value
826
 
Slow_queries    0
 
826
Slow_queries    #
827
827
select count(*) from t1 where a=7 union select count(*) from t1 where b=13;
828
828
count(*)
829
829
26
830
830
10
831
831
show status like 'Slow_queries';
832
832
Variable_name   Value
833
 
Slow_queries    0
 
833
Slow_queries    #
834
834
flush status;
835
835
select a from t1 where b not in (1,2,3) union select a from t1 where b not in (4,5,6);
836
836
a
846
846
2
847
847
show status like 'Slow_queries';
848
848
Variable_name   Value
849
 
Slow_queries    0
 
849
Slow_queries    #
850
850
drop table t1;
851
851
create table t1 (   RID int not null default '0',   IID int not null default '0',    nada varchar(50)  not null,NAME varchar(50) not null,PHONE varchar(50) not null);
852
852
insert into t1 ( RID,IID,nada,NAME,PHONE) values (1, 1, 'main', 'a', '111'), (2, 1, 'main', 'b', '222'), (3, 1, 'main', 'c', '333'), (4, 1, 'main', 'd', '444'), (5, 1, 'main', 'e', '555'), (6, 2, 'main', 'c', '333'), (7, 2, 'main', 'd', '454'), (8, 2, 'main', 'e', '555'), (9, 2, 'main', 'f', '666'), (10, 2, 'main', 'g', '777');