diff options
author | Nirbhay Choubey <nirbhay@mariadb.com> | 2016-09-06 10:36:10 -0400 |
---|---|---|
committer | Nirbhay Choubey <nirbhay@mariadb.com> | 2016-09-06 10:36:10 -0400 |
commit | 780c40ef0e1d200fd6874a9e8e65705e685d76c0 (patch) | |
tree | 0a29ad51f0192f865d79de65b566da61add4b536 /mysql-test/t/status.test | |
parent | d8ad96eac0df9241ba200634717227a7153086e1 (diff) | |
download | mariadb-git-10.2-mdev7635.tar.gz |
MDEV-7635: Part 110.2-mdev7635
innodb_buffer_pool_dump_at_shutdown = ON
innodb_buffer_pool_dump_pct = 25
innodb_buffer_pool_load_at_startup = ON
innodb_checksum_algorithm = CRC32
innodb_file_format = Barracuda
innodb_file_format_max = Barracuda
innodb_large_prefix = ON
innodb_log_compressed_pages = ON
innodb_log_file_size = 128M
innodb_purge_threads = 4
innodb_stats_traditional = OFF
innodb_strict_mode = ON
binlog_annotate_row_events = ON
binlog_format = MIXED
group_concat_max_len = 1M
histogram_size = 255
long-query-time = 2
lower_case_table_names = 2
max_allowed_packet = 16M
replicate_annotate_row_events = ON
slave_net_timeout = 60
sync_binlog = 1
use_stat_tables = complementary
aria_recover = FORCE,BACKUP
myisam_recover_options = FORCE,BACKUP
Diffstat (limited to 'mysql-test/t/status.test')
-rw-r--r-- | mysql-test/t/status.test | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/t/status.test b/mysql-test/t/status.test index e0b0d9c8838..dbe0cb6d0c2 100644 --- a/mysql-test/t/status.test +++ b/mysql-test/t/status.test @@ -352,7 +352,7 @@ DROP FUNCTION f1; # # Test of internal temporary table status variables # - +SET SESSION use_stat_tables = never; flush status; create table t1 (a int not null auto_increment primary key, g int, b blob); insert into t1 (g,b) values (1,'a'), (2, 'b'), (3, 'b'), (1, 'c'); @@ -363,6 +363,7 @@ show status like 'Row%'; show status like 'Handler%'; show status like '%tmp%'; drop table t1; +SET SESSION use_stat_tables = default; # # Test of handler status counts |