diff options
author | Vicențiu Ciorbaru <vicentiu@mariadb.org> | 2017-03-05 14:32:30 +0200 |
---|---|---|
committer | Vicențiu Ciorbaru <vicentiu@mariadb.org> | 2017-03-05 15:18:26 +0200 |
commit | 97041acf7f6dd17636fea9edfe25a6105d893db6 (patch) | |
tree | 7efb6b7068187e4ccc19c5d9e36b18e55cdf86b2 /storage | |
parent | 4c3b732d9f011122407f39550e9030e142d1b8d2 (diff) | |
download | mariadb-git-97041acf7f6dd17636fea9edfe25a6105d893db6.tar.gz |
Fix tokudb.gap_lock_error test
TokuDB testsuite makes use of includes not found in our default 10.0.
Cherry pick them from Percona Server's include directory.
Diffstat (limited to 'storage')
-rw-r--r-- | storage/tokudb/mysql-test/tokudb/r/gap_lock_error.result | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/storage/tokudb/mysql-test/tokudb/r/gap_lock_error.result b/storage/tokudb/mysql-test/tokudb/r/gap_lock_error.result index 2994280303f..41e294f7d8d 100644 --- a/storage/tokudb/mysql-test/tokudb/r/gap_lock_error.result +++ b/storage/tokudb/mysql-test/tokudb/r/gap_lock_error.result @@ -80,8 +80,8 @@ id value 5 5 select * from gap4 where id between 3 and 7 for update; id value -4 4 3 3 +4 4 5 5 set session autocommit=1; select * from gap1 limit 1 for update; @@ -153,8 +153,8 @@ id value 5 5 select * from gap4 where id between 3 and 7 for update; id value -4 4 3 3 +4 4 5 5 set session autocommit=0; select * from gap1 limit 1 lock in share mode; @@ -226,8 +226,8 @@ id value 5 5 select * from gap4 where id between 3 and 7 lock in share mode; id value -4 4 3 3 +4 4 5 5 set session autocommit=1; select * from gap1 limit 1 lock in share mode; @@ -299,8 +299,8 @@ id value 5 5 select * from gap4 where id between 3 and 7 lock in share mode; id value -4 4 3 3 +4 4 5 5 set session autocommit=0; select * from gap1 limit 1 ; @@ -372,8 +372,8 @@ id value 5 5 select * from gap4 where id between 3 and 7 ; id value -4 4 3 3 +4 4 5 5 set session autocommit=1; select * from gap1 limit 1 ; @@ -445,8 +445,8 @@ id value 5 5 select * from gap4 where id between 3 and 7 ; id value -4 4 3 3 +4 4 5 5 set session autocommit=0; insert into gap1 (id1, id2, id3) values (-1,-1,-1); |