mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 19:37:16 +02:00
row_build_index_entry(): Make index const
This commit is contained in:
parent
c58e502455
commit
5aa18f4e08
3 changed files with 9 additions and 9 deletions
|
|
@ -90,8 +90,8 @@ row_build_index_entry_low(
|
|||
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 */
|
||||
ulint flag) /*!< in: ROW_BUILD_NORMAL,
|
||||
|
|
@ -112,8 +112,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 */
|
||||
MY_ATTRIBUTE((warn_unused_result, nonnull(1,3,4)));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue