~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/embedded_innodb/tests/t/basic_savepoint.test

  • Committer: Brian Aker
  • Date: 2010-04-16 18:34:36 UTC
  • mfrom: (1283.28.40)
  • Revision ID: brian@gaz-20100416183436-e1rr7divbn4rvghi
Merge Stewart.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
create table t1 (a int);
 
1
create table t1 (a int primary key);
2
2
begin;
3
3
insert into t1 values (1);
4
4
savepoint A;
10
10
select count(*) from t1;
11
11
begin;
12
12
insert into t1 values (2);
13
 
insert into t1 values (2);
 
13
insert into t1 values (3);
14
14
savepoint A;
15
 
insert into t1 values (2);
16
 
insert into t1 values (2);
 
15
insert into t1 values (4);
 
16
insert into t1 values (5);
17
17
savepoint B;
18
 
insert into t1 values (2);
 
18
insert into t1 values (6);
19
19
savepoint C;
20
 
insert into t1 values (2);
 
20
insert into t1 values (7);
21
21
rollback to savepoint A;
22
22
select count(*) from t1;
23
23
commit;