diff options
author | Alexey Kopytov <Alexey.Kopytov@Sun.com> | 2010-06-03 21:29:53 +0400 |
---|---|---|
committer | Alexey Kopytov <Alexey.Kopytov@Sun.com> | 2010-06-03 21:29:53 +0400 |
commit | 34d0643a61dd4c0e617dd145a729c350f34ba8bf (patch) | |
tree | 5f4a54da7bf38fceb96f555b5b4ee4cc0ea74c73 /mysql-test/suite/innodb/t/innodb_bug53674.test | |
parent | c80bf763ffdea3e9ce50a9f338f84a65f39e1358 (diff) | |
parent | b6a4e25c7d0fd773ab87c32f5db9090aaff8d20c (diff) | |
download | mariadb-git-34d0643a61dd4c0e617dd145a729c350f34ba8bf.tar.gz |
Automerge.
Diffstat (limited to 'mysql-test/suite/innodb/t/innodb_bug53674.test')
-rw-r--r-- | mysql-test/suite/innodb/t/innodb_bug53674.test | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/suite/innodb/t/innodb_bug53674.test b/mysql-test/suite/innodb/t/innodb_bug53674.test new file mode 100644 index 00000000000..47f67f109c3 --- /dev/null +++ b/mysql-test/suite/innodb/t/innodb_bug53674.test @@ -0,0 +1,8 @@ +-- source include/have_innodb.inc + +create table bug53674(a int)engine=innodb; +insert into bug53674 values (1),(2); +start transaction; +select * from bug53674 for update; +select * from bug53674 where a=(select a from bug53674 where a > 1); +drop table bug53674; |