~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/tests/r/innodb_bug53674.result

  • Committer: Monty Taylor
  • Date: 2010-11-26 22:50:54 UTC
  • mfrom: (1953.1.6 build)
  • Revision ID: mordred@inaugust.com-20101126225054-sg90svw8579t5p3i
Stewart - InnoDB 1.1.1
Monty - Fixed some autoconf tests which were returning false positives.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
create table bug53674(a int)engine=innodb;
 
2
insert into bug53674 values (1),(2);
 
3
start transaction;
 
4
select * from bug53674 for update;
 
5
a
 
6
1
 
7
2
 
8
select * from bug53674 where a=(select a from bug53674 where a > 1);
 
9
a
 
10
2
 
11
drop table bug53674;