diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2018-03-22 19:40:38 +0200 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2018-03-29 20:47:37 +0300 |
commit | 604fea1ad6d7b0463e5a30471a04b3b417467df9 (patch) | |
tree | b63dff83d808833c34fcbaa46bdc7ddae5bdc776 /storage/innobase/pars | |
parent | e7980f9cee3cf2c18ebb5871ca4bfcfe4f870169 (diff) | |
download | mariadb-git-604fea1ad6d7b0463e5a30471a04b3b417467df9.tar.gz |
MDEV-12266: Remove dict_index_t::space
We can rely on the dict_table_t::space. All indexes of a table object
are always in the same tablespace. (For fulltext indexes, the data is
located in auxiliary tables, and these will continue to have their own
table objects, separate from the main table.)
Diffstat (limited to 'storage/innobase/pars')
-rw-r--r-- | storage/innobase/pars/pars0pars.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/innobase/pars/pars0pars.cc b/storage/innobase/pars/pars0pars.cc index 11195287d8f..b50d6233d43 100644 --- a/storage/innobase/pars/pars0pars.cc +++ b/storage/innobase/pars/pars0pars.cc @@ -1974,7 +1974,7 @@ pars_create_index( ind_type = ind_type | DICT_CLUSTERED; } - index = dict_mem_index_create(table_sym->name, index_sym->name, 0, + index = dict_mem_index_create(table_sym->name, index_sym->name, ind_type, n_fields); column = column_list; |