1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

fix tests that were relying on @@have_partitioning

sql/sql_partition_admin.cc:
  compilation failures w/o partitioning
This commit is contained in:
Sergei Golubchik
2013-08-15 10:47:18 +02:00
parent 18fc51f5a4
commit 3462b6d3d2
10 changed files with 18 additions and 77 deletions

View File

@ -32,9 +32,9 @@
#ifndef WITH_PARTITION_STORAGE_ENGINE
bool Partition_statement_unsupported::execute(THD *)
bool Sql_cmd_partition_unsupported::execute(THD *)
{
DBUG_ENTER("Partition_statement_unsupported::execute");
DBUG_ENTER("Sql_cmd_partition_unsupported::execute");
/* error, partitioning support not compiled in... */
my_error(ER_FEATURE_DISABLED, MYF(0), "partitioning",
"--with-plugin-partition");