diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2018-10-01 09:30:33 +0300 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2018-10-01 09:31:50 +0300 |
commit | 5aa18f4e08acfdef669ef05b3685a8a6a1920046 (patch) | |
tree | a661126c0b87806e5fd6c0d899845855ae1565fb /storage/innobase/include/row0row.ic | |
parent | c58e5024553972eec2d63bcdf3ebfd97de2308a8 (diff) | |
download | mariadb-git-5aa18f4e08acfdef669ef05b3685a8a6a1920046.tar.gz |
row_build_index_entry(): Make index const
Diffstat (limited to 'storage/innobase/include/row0row.ic')
-rw-r--r-- | storage/innobase/include/row0row.ic | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/innobase/include/row0row.ic b/storage/innobase/include/row0row.ic index a7c0f2551b5..e1a3b5f6a1a 100644 --- a/storage/innobase/include/row0row.ic +++ b/storage/innobase/include/row0row.ic @@ -119,8 +119,8 @@ row_build_index_entry( inserted or purged */ const row_ext_t* ext, /*!< in: externally stored column prefixes, or NULL */ - dict_index_t* index, /*!< in: index on the table */ - mem_heap_t* heap) /*!< in: memory heap from which + const dict_index_t* index, /*!< in: index on the table */ + mem_heap_t* heap) /*!< in,out: memory heap from which the memory for the index entry is allocated */ { |