summaryrefslogtreecommitdiff
path: root/storage/innobase/include/row0row.h
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2018-11-22 17:07:35 +0200
committerMarko Mäkelä <marko.makela@mariadb.com>2018-11-22 17:10:26 +0200
commit06e5f28f9f132aee0413701baf05cc518964debf (patch)
tree45a65fc509d0eea63685b32773059d531581f909 /storage/innobase/include/row0row.h
parent0c69f2e1ee8ee275480ce8b91e81e40ffe4a560c (diff)
downloadmariadb-git-06e5f28f9f132aee0413701baf05cc518964debf.tar.gz
MDEV-12266: Remove a level of pointer indirection
Replace table->space->id with table->space_id.
Diffstat (limited to 'storage/innobase/include/row0row.h')
-rw-r--r--storage/innobase/include/row0row.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/innobase/include/row0row.h b/storage/innobase/include/row0row.h
index 3f8d0e9b254..ed69309bc50 100644
--- a/storage/innobase/include/row0row.h
+++ b/storage/innobase/include/row0row.h
@@ -397,7 +397,7 @@ row_mtr_start(mtr_t* mtr, dict_index_t* index, bool pessimistic)
{
mtr->start();
- switch (index->table->space->id) {
+ switch (index->table->space_id) {
case IBUF_SPACE_ID:
if (pessimistic
&& !(index->type & (DICT_UNIQUE | DICT_SPATIAL))) {