~clint-fewbar/drizzle/regex-policy-cache-limiter

« back to all changes in this revision

Viewing changes to plugin/pbxt/tests/t/basic_statement_rollback.test.disabled

  • Committer: Clint Byrum
  • Date: 2012-03-15 18:05:43 UTC
  • mfrom: (2224.1.302 workspace)
  • Revision ID: clint@ubuntu.com-20120315180543-9jxxm4q10k3np2ws
merging with latest trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
--source include/have_linux.inc
2
 
SET SESSION storage_engine=pbxt;
3
 
create table t1 (a int primary key);
4
 
insert into t1 values (4);
5
 
select * from t1;
6
 
begin;
7
 
insert into t1 values (5);
8
 
--error ER_DUP_KEY, ER_DUP_ENTRY
9
 
insert into t1 values (1),(2),(3),(4);
10
 
commit;
11
 
select * from t1;
12
 
drop table t1;