Commit 4edb2938 authored by Marko Mäkelä's avatar Marko Mäkelä

Merge 10.3 into 10.4

parents 0474be0a 77819245
...@@ -2870,15 +2870,6 @@ row_sel_field_store_in_mysql_format_func( ...@@ -2870,15 +2870,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. /** Convert a field in the Innobase format to a field in the MySQL format.
@param[out] mysql_rec record in the MySQL format @param[out] mysql_rec record in the MySQL format
@param[in,out] prebuilt prebuilt struct @param[in,out] prebuilt prebuilt struct
...@@ -2893,13 +2884,11 @@ row_sel_field_store_in_mysql_format_func( ...@@ -2893,13 +2884,11 @@ row_sel_field_store_in_mysql_format_func(
*/ */
static MY_ATTRIBUTE((warn_unused_result)) static MY_ATTRIBUTE((warn_unused_result))
ibool ibool
row_sel_store_mysql_field_func( row_sel_store_mysql_field(
byte* mysql_rec, byte* mysql_rec,
row_prebuilt_t* prebuilt, row_prebuilt_t* prebuilt,
const rec_t* rec, const rec_t* rec,
#ifdef UNIV_DEBUG
const dict_index_t* index, const dict_index_t* index,
#endif
const ulint* offsets, const ulint* offsets,
ulint field_no, ulint field_no,
const mysql_row_templ_t*templ) 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