-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 10.0.0
-
Component/s: None
-
Labels:None
Server accepts --use-stat-tables=<symbolic value> or --use-stat-tables=<numeric value> options on the command line without any errors or warnings, but the actual value of the global variable does not get set, it remains NEVER. Changing the value at runtime works.
bzr version-info
revision-id: igor@askmonty.org-20120814194214-bc5hme0t1qeewrmj
|
date: 2012-08-14 12:42:14 -0700
|
build-date: 2012-08-17 06:01:06 +0400
|
revno: 3358
|
Test case:
# Run as
|
# perl mysql-test-run.pl ---mysqld=--use-stat-tables=PREFERABLY <test name>
|
 |
SELECT @@use_stat_tables;
|
Expected output:
SELECT @@use_stat_tables;
|
@@use_stat_tables
|
PREFERABLY
|
Actual output:
SELECT @@use_stat_tables;
|
@@use_stat_tables
|
NEVER
|