diff options
author | Sergei Golubchik <serg@mariadb.org> | 2015-12-15 17:23:58 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2015-12-15 17:23:58 +0100 |
commit | dcc501aec364f27f03aabfd5db6d5362a966be86 (patch) | |
tree | 9ad055032ef798b5b38836b73dff4bb3924774a2 /mysql-test/suite/tokudb.parts/r/partition_auto_increment_tokudb.result | |
parent | 2c8c65297865d9f8da501761f46e2a34e29af603 (diff) | |
download | mariadb-git-dcc501aec364f27f03aabfd5db6d5362a966be86.tar.gz |
5.6.27-76.0
Diffstat (limited to 'mysql-test/suite/tokudb.parts/r/partition_auto_increment_tokudb.result')
-rw-r--r-- | mysql-test/suite/tokudb.parts/r/partition_auto_increment_tokudb.result | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/suite/tokudb.parts/r/partition_auto_increment_tokudb.result b/mysql-test/suite/tokudb.parts/r/partition_auto_increment_tokudb.result index a40493a18f5..b4ae303adff 100644 --- a/mysql-test/suite/tokudb.parts/r/partition_auto_increment_tokudb.result +++ b/mysql-test/suite/tokudb.parts/r/partition_auto_increment_tokudb.result @@ -1,3 +1,6 @@ +SET @tokudb_prelock_empty_saved = @@GLOBAL.tokudb_prelock_empty; +SET GLOBAL tokudb_prelock_empty = 0; +SET SESSION tokudb_prelock_empty = 0; DROP TABLE IF EXISTS t1; # test without partitioning for reference CREATE TABLE t1 ( @@ -1113,3 +1116,4 @@ a 0 DROP TABLE t1; ############################################################################## +SET GLOBAL tokudb_prelock_empty = @tokudb_prelock_empty_saved; |