mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 19:41:47 +01:00
branches/zip: Make dtuple_big_rec_free() an inline function.
This commit is contained in:
parent
1cd528122e
commit
e4d8b192fe
3 changed files with 13 additions and 13 deletions
|
@ -652,15 +652,3 @@ dtuple_convert_back_big_rec(
|
|||
|
||||
mem_heap_free(vector->heap);
|
||||
}
|
||||
|
||||
/******************************************************************
|
||||
Frees the memory in a big rec vector. */
|
||||
|
||||
void
|
||||
dtuple_big_rec_free(
|
||||
/*================*/
|
||||
big_rec_t* vector) /* in, own: big rec vector; it is
|
||||
freed in this function */
|
||||
{
|
||||
mem_heap_free(vector->heap);
|
||||
}
|
||||
|
|
|
@ -373,7 +373,7 @@ dtuple_convert_back_big_rec(
|
|||
freed in this function */
|
||||
/******************************************************************
|
||||
Frees the memory in a big rec vector. */
|
||||
|
||||
UNIV_INLINE
|
||||
void
|
||||
dtuple_big_rec_free(
|
||||
/*================*/
|
||||
|
|
|
@ -438,3 +438,15 @@ dtuple_contains_null(
|
|||
|
||||
return(FALSE);
|
||||
}
|
||||
|
||||
/******************************************************************
|
||||
Frees the memory in a big rec vector. */
|
||||
UNIV_INLINE
|
||||
void
|
||||
dtuple_big_rec_free(
|
||||
/*================*/
|
||||
big_rec_t* vector) /* in, own: big rec vector; it is
|
||||
freed in this function */
|
||||
{
|
||||
mem_heap_free(vector->heap);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue