diff options
author | Mattias Jonsson <mattias.jonsson@sun.com> | 2009-08-12 11:46:08 +0200 |
---|---|---|
committer | Mattias Jonsson <mattias.jonsson@sun.com> | 2009-08-12 11:46:08 +0200 |
commit | f09fc5000413a4daaa401997968fc8f13def2f2c (patch) | |
tree | 2fdde1428cc6146ffa20d94e13dc8f6d44f87c05 /sql/table.cc | |
parent | 7b8d509b2d189cc1574d07291d02941ef7e24a59 (diff) | |
parent | 48e0325c5e22aef8faca34672c30873c361412e1 (diff) | |
download | mariadb-git-f09fc5000413a4daaa401997968fc8f13def2f2c.tar.gz |
merge
Diffstat (limited to 'sql/table.cc')
-rw-r--r-- | sql/table.cc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/table.cc b/sql/table.cc index c1d79bdcdd3..4f647618979 100644 --- a/sql/table.cc +++ b/sql/table.cc @@ -913,6 +913,15 @@ static int open_binary_frm(THD *thd, TABLE_SHARE *share, uchar *head, we unlock the old value of share->db_plugin before replacing it with a globally locked version of tmp_plugin */ + /* Check if the partitioning engine is ready */ + if (!plugin_is_ready(&name, MYSQL_STORAGE_ENGINE_PLUGIN)) + { + error= 8; + my_error(ER_OPTION_PREVENTS_STATEMENT, MYF(0), + "--skip-partition"); + my_free(buff, MYF(0)); + goto err; + } plugin_unlock(NULL, share->db_plugin); share->db_plugin= ha_lock_engine(NULL, partition_hton); DBUG_PRINT("info", ("setting dbtype to '%.*s' (%d)", |