~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbxt/tests/t/basic_transaction_rollback.test

  • Committer: Stewart Smith
  • Date: 2010-11-07 06:43:17 UTC
  • mfrom: (1909 merge)
  • mto: This revision was merged to the branch mainline in revision 1915.
  • Revision ID: stewart@flamingspork.com-20101107064317-i0usp0cqk97ftxev
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--source include/have_linux.inc
 
2
--source include/have_valgrind.inc
 
3
SET SESSION storage_engine=pbxt;
 
4
CREATE TABLE t1 (a int primary key);
 
5
INSERT INTO t1 VALUES (1);
 
6
BEGIN;
 
7
INSERT INTO t1 VALUES (2);
 
8
ROLLBACK;
 
9
SELECT COUNT(*) from t1;
 
10
DROP TABLE t1;