~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/blitzdb/tests/t/blitzdb-indexes.test

  • Committer: Mark Atwood
  • Date: 2010-06-24 03:15:21 UTC
  • mto: (1637.2.4 build)
  • mto: This revision was merged to the branch mainline in revision 1639.
  • Revision ID: me@mark.atwood.name-20100624031521-gafmppfbf5afm68w
new syslog module, with plugins for query log, error message, and SYSLOG() function

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
  select c from t1 where a = 8;
29
29
  explain select c from t1 where b = 3;
30
30
  select c from t1 where b = 3;
31
 
 
32
 
  # Delete rows by PK and make sure it can't be fetched with
33
 
  # the secondary index. Reason: Row(s) should not exist.
34
 
  select * from t1 where a = 1;
35
 
  select * from t1 where b = 1;
36
 
  delete from t1 where a = 1;
37
 
  select * from t1 where a = 1;
38
 
  select * from t1 where b = 1;
39
 
 
40
 
  select * from t1 where a >= 2 and a <= 4;
41
 
  select * from t1 where b >= 2 and b <= 4;
42
 
  delete from t1 where a >= 2 and a <= 4;
43
 
  select * from t1 where a >= 2 and a <= 4;
44
 
  select * from t1 where b >= 2 and b <= 4;
45
31
drop table t1;