~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/blitzdb/tests/r/index.result

  • Committer: Lee Bieber
  • Date: 2010-11-03 16:59:57 UTC
  • mfrom: (1900.1.3 build)
  • Revision ID: kalebral@gmail.com-20101103165957-3s69xbr349fd9hz5
Merge Gustaf - Replaced macros with functions/templates
Merge Patrick - fix bug 669698: Need sphinx documentation for test-run.pl
Merge Toru - fix blitzdb VARCHAR issue

Show diffs side-by-side

added added

removed removed

Lines of Context:
895
895
count(*)
896
896
0
897
897
drop table t1;
 
898
create table t1 (a varchar(32), index(a)) engine = blitzdb;
 
899
insert into t1 values ('ccc'), ('bbb'), ('aaa');
 
900
insert into t1 values ('eee'), ('ddd'), ('fff');
 
901
select * from t1;
 
902
a
 
903
aaa
 
904
bbb
 
905
ccc
 
906
ddd
 
907
eee
 
908
fff
 
909
select * from t1 where a = 'aaa';
 
910
a
 
911
aaa
 
912
select * from t1 where a = 'bbb';
 
913
a
 
914
bbb
 
915
select * from t1 where a = 'ccc';
 
916
a
 
917
ccc
 
918
select * from t1 where a = 'ddd';
 
919
a
 
920
ddd
 
921
select * from t1 where a = 'eee';
 
922
a
 
923
eee
 
924
delete from t1 where a = 'ddd';
 
925
delete from t1 where a = 'eee';
 
926
select * from t1;
 
927
a
 
928
aaa
 
929
bbb
 
930
ccc
 
931
fff
 
932
select count(*) from t1;
 
933
count(*)
 
934
4
 
935
drop table t1;
898
936
create table t1 (a int, b int, unique index(a)) engine = blitzdb;
899
937
insert into t1 values (NULL, 1), (NULL, 2), (NULL, 3), (NULL, 4);
900
938
select * from t1;