diff options
author | Alexey Botchkov <holyfoot@askmonty.org> | 2018-04-17 16:10:47 +0400 |
---|---|---|
committer | Alexey Botchkov <holyfoot@askmonty.org> | 2018-04-17 16:10:47 +0400 |
commit | bb5f4967f54d3f458bec86fb1845405a0a88bc0f (patch) | |
tree | aba2926bc76561b0dfaa0a95da0fddea1fecf6dc /sql/sql_partition.cc | |
parent | 02e897ca57168059c6a74d1129158afea93aa875 (diff) | |
download | mariadb-git-bb5f4967f54d3f458bec86fb1845405a0a88bc0f.tar.gz |
MDEV-13584 Assertion `!part_elem->tablespace_name && !table_create_info->tablespace' failed during EXCHANGE PARTITION with different TABLESPACE.
Wrong DBUG_ASSERT just removed.
Diffstat (limited to 'sql/sql_partition.cc')
-rw-r--r-- | sql/sql_partition.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sql/sql_partition.cc b/sql/sql_partition.cc index 94e90e1fc5e..c5c39a26da1 100644 --- a/sql/sql_partition.cc +++ b/sql/sql_partition.cc @@ -4762,8 +4762,6 @@ bool compare_partition_options(HA_CREATE_INFO *table_create_info, const char *option_diffs[MAX_COMPARE_PARTITION_OPTION_ERRORS + 1]; int i, errors= 0; DBUG_ENTER("compare_partition_options"); - DBUG_ASSERT(!part_elem->tablespace_name && - !table_create_info->tablespace); /* Note that there are not yet any engine supporting tablespace together |