diff options
author | Sergei Golubchik <serg@mariadb.org> | 2017-12-15 16:38:46 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2017-12-18 16:16:42 +0100 |
commit | 03e91ce324465e465468021edd050c3b73d4cee3 (patch) | |
tree | 8a1abf1699d8686fa9605b1b6895153079dec825 /sql/sql_partition.cc | |
parent | c1e5fef05d87038fff8b55ba763d082a5bec5d78 (diff) | |
download | mariadb-git-03e91ce324465e465468021edd050c3b73d4cee3.tar.gz |
MDEV-14641 Incompatible key or row definition between the MariaDB .frm file and the information in the storage engine
make sure that mysql_create_frm_image() and fast_alter_partition_table()
use the same code to derive HA_OPTION_PACK_RECORD from
create_info->row_type.
Diffstat (limited to 'sql/sql_partition.cc')
-rw-r--r-- | sql/sql_partition.cc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sql/sql_partition.cc b/sql/sql_partition.cc index 02109b22898..a675d325a8b 100644 --- a/sql/sql_partition.cc +++ b/sql/sql_partition.cc @@ -6834,10 +6834,7 @@ uint fast_alter_partition_table(THD *thd, TABLE *table, lpt->part_info= part_info; lpt->alter_info= alter_info; lpt->create_info= create_info; - lpt->db_options= create_info->table_options; - if (create_info->row_type != ROW_TYPE_FIXED && - create_info->row_type != ROW_TYPE_DEFAULT) - lpt->db_options|= HA_OPTION_PACK_RECORD; + lpt->db_options= create_info->table_options_with_row_type(); lpt->table= table; lpt->key_info_buffer= 0; lpt->key_count= 0; |