~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/handler_delete.test

  • Committer: Monty Taylor
  • Date: 2011-02-13 17:26:39 UTC
  • mfrom: (2157.2.2 give-in-to-pkg-config)
  • mto: This revision was merged to the branch mainline in revision 2166.
  • Revision ID: mordred@inaugust.com-20110213172639-nhy7i72sfhoq13ms
Merged in pkg-config fixes.

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;