~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/handler_delete.test

  • Committer: Lee
  • Date: 2008-10-30 22:02:01 UTC
  • mto: (572.1.2 devel)
  • mto: This revision was merged to the branch mainline in revision 573.
  • Revision ID: lbieber@lbieber-desktop-20081030220201-elb6qprbzpn7c5a4
add my name to the AUTHORS file

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
FLUSH STATUS;
2
 
SHOW STATUS LIKE 'Handler_delete';
3
 
CREATE TABLE t1 (a int primary key);
4
 
INSERT INTO t1 VALUES (1);
5
 
DELETE FROM t1;
6
 
SHOW STATUS LIKE 'Handler_delete';
7
 
INSERT INTO t1 VALUES (1),(2),(3),(4),(5),(6),(7);
8
 
SHOW STATUS LIKE 'Handler_delete';
9
 
DELETE FROM t1 WHERE a=4;
10
 
SHOW STATUS LIKE 'Handler_delete';
11
 
DELETE FROM t1 WHERE a > 2;
12
 
INSERT INTO t1 VALUES (3),(4),(5);
13
 
SHOW STATUS LIKE 'Handler_delete';
14
 
DROP TABLE t1;
15
 
FLUSH STATUS;