| 38 | #ifndef WITH_PARTITION_STORAGE_ENGINE |
| 39 | |
| 40 | bool Sql_cmd_partition_unsupported::execute(THD *) |
| 41 | { |
| 42 | DBUG_ENTER("Sql_cmd_partition_unsupported::execute"); |
| 43 | /* error, partitioning support not compiled in... */ |
| 44 | my_error(ER_FEATURE_DISABLED, MYF(0), "partitioning", |
| 45 | "--with-plugin-partition"); |
| 46 | DBUG_RETURN(TRUE); |
| 47 | } |
| 48 | |
| 49 | #else |
| 50 |
nothing calls this directly
no test coverage detected