1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Fixed bug mdev-464.

The value of system variable use_stat_tables was always reset to 0 ('never') 
by mistake at the launch of the server.
This commit is contained in:
Igor Babaev
2012-08-17 13:23:49 -07:00
parent 822e5da0d0
commit 85db02984f
4 changed files with 15 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
select @@global.use_stat_tables;
@@global.use_stat_tables
COMPLEMENTARY
select @@session.use_stat_tables;
@@session.use_stat_tables
COMPLEMENTARY
set @save_use_stat_tables=@@use_stat_tables;
set use_stat_tables='preferably';
DROP DATABASE IF EXISTS dbt3_s001;