Commit 77819245 authored by Marko Mäkelä's avatar Marko Mäkelä

MDEV-17823: Fix the non-debug build

parent 4e75bfcb
......@@ -2908,15 +2908,6 @@ row_sel_field_store_in_mysql_format_func(
}
}
#ifdef UNIV_DEBUG
/** Convert a field from Innobase format to MySQL format. */
# define row_sel_store_mysql_field(m,p,r,i,o,f,t) \
row_sel_store_mysql_field_func(m,p,r,i,o,f,t)
#else /* UNIV_DEBUG */
/** Convert a field from Innobase format to MySQL format. */
# define row_sel_store_mysql_field(m,p,r,i,o,f,t) \
row_sel_store_mysql_field_func(m,p,r,o,f,t)
#endif /* UNIV_DEBUG */
/** Convert a field in the Innobase format to a field in the MySQL format.
@param[out] mysql_rec record in the MySQL format
@param[in,out] prebuilt prebuilt struct
......@@ -2931,13 +2922,11 @@ row_sel_field_store_in_mysql_format_func(
*/
static MY_ATTRIBUTE((warn_unused_result))
ibool
row_sel_store_mysql_field_func(
row_sel_store_mysql_field(
byte* mysql_rec,
row_prebuilt_t* prebuilt,
const rec_t* rec,
#ifdef UNIV_DEBUG
const dict_index_t* index,
#endif
const ulint* offsets,
ulint field_no,
const mysql_row_templ_t*templ)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment