~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/embedded_innodb/tests/r/basic_savepoint.result

  • 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;
16
16
1
17
17
begin;
18
18
insert into t1 values (2);
19
 
insert into t1 values (2);
 
19
insert into t1 values (3);
20
20
savepoint A;
21
 
insert into t1 values (2);
22
 
insert into t1 values (2);
 
21
insert into t1 values (4);
 
22
insert into t1 values (5);
23
23
savepoint B;
24
 
insert into t1 values (2);
 
24
insert into t1 values (6);
25
25
savepoint C;
26
 
insert into t1 values (2);
 
26
insert into t1 values (7);
27
27
rollback to savepoint A;
28
28
select count(*) from t1;
29
29
count(*)