Commit 03c2cc07 authored by unknown's avatar unknown

Bug# 16718 partitioning support status variable has incorrect name

change status variable from have_partition_engine to have_partitioning.


mysql-test/include/have_partition.inc:
  updated to use new status variable
mysql-test/r/have_partition.require:
  updated to use new status variable
sql/set_var.cc:
  change status variable from have_partition_engine to have_partitioning.
parent 4649ac07
-- require r/have_partition.require -- require r/have_partition.require
disable_query_log; disable_query_log;
show variables like "have_partition_engine"; show variables like "have_partitioning";
enable_query_log; enable_query_log;
Variable_name Value Variable_name Value
have_partition_engine YES have_partitioning YES
...@@ -631,7 +631,7 @@ sys_var_have_variable sys_have_innodb("have_innodb", &have_innodb); ...@@ -631,7 +631,7 @@ sys_var_have_variable sys_have_innodb("have_innodb", &have_innodb);
sys_var_have_variable sys_have_isam("have_isam", &have_isam); sys_var_have_variable sys_have_isam("have_isam", &have_isam);
sys_var_have_variable sys_have_ndbcluster("have_ndbcluster", &have_ndbcluster); sys_var_have_variable sys_have_ndbcluster("have_ndbcluster", &have_ndbcluster);
sys_var_have_variable sys_have_openssl("have_openssl", &have_openssl); sys_var_have_variable sys_have_openssl("have_openssl", &have_openssl);
sys_var_have_variable sys_have_partition_db("have_partition_engine", sys_var_have_variable sys_have_partition_db("have_partitioning",
&have_partition_db); &have_partition_db);
sys_var_have_variable sys_have_query_cache("have_query_cache", sys_var_have_variable sys_have_query_cache("have_query_cache",
&have_query_cache); &have_query_cache);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment