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

« back to all changes in this revision

Viewing changes to plugin/pbxt/tests/t/basic_savepoint.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
 
begin;
5
 
insert into t1 values (1);
6
 
savepoint A;
7
 
insert into t1 values (2);
8
 
select count(*) from t1;
9
 
rollback to savepoint A;
10
 
select count(*) from t1;
11
 
commit;
12
 
select count(*) from t1;
13
 
begin;
14
 
insert into t1 values (2);
15
 
insert into t1 values (3);
16
 
savepoint A;
17
 
insert into t1 values (4);
18
 
insert into t1 values (5);
19
 
savepoint B;
20
 
insert into t1 values (6);
21
 
savepoint C;
22
 
insert into t1 values (7);
23
 
rollback to savepoint A;
24
 
select count(*) from t1;
25
 
commit;
26
 
drop table t1;
27