diff options
author | Sergei Golubchik <sergii@pisem.net> | 2013-08-15 10:47:18 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2013-08-15 10:47:18 +0200 |
commit | 3462b6d3d29eebc246dbf8942baffd0ae5dd0b4f (patch) | |
tree | 4e9b2f4f4e54c72c57f140d7377f9a7b7647beff /sql/sql_partition_admin.cc | |
parent | 18fc51f5a48191e0424a160f35c29764236b2047 (diff) | |
download | mariadb-git-3462b6d3d29eebc246dbf8942baffd0ae5dd0b4f.tar.gz |
fix tests that were relying on @@have_partitioning
sql/sql_partition_admin.cc:
compilation failures w/o partitioning
Diffstat (limited to 'sql/sql_partition_admin.cc')
-rw-r--r-- | sql/sql_partition_admin.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sql_partition_admin.cc b/sql/sql_partition_admin.cc index 1a82413bb07..29ca86fa274 100644 --- a/sql/sql_partition_admin.cc +++ b/sql/sql_partition_admin.cc @@ -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"); |