Commit 940f0c78 authored by Marko Mäkelä's avatar Marko Mäkelä

MDEV-11487: Make row_ins_index_entry_set_vals() static

parent 8d116d16
...@@ -127,16 +127,6 @@ row_ins_sec_index_entry_low( ...@@ -127,16 +127,6 @@ row_ins_sec_index_entry_low(
/*!< in: if true, just do duplicate check /*!< in: if true, just do duplicate check
and return. don't execute actual insert. */ and return. don't execute actual insert. */
MY_ATTRIBUTE((warn_unused_result)); MY_ATTRIBUTE((warn_unused_result));
/** Sets the values of the dtuple fields in entry from the values of appropriate
columns in row.
@param[in] index index handler
@param[out] entry index entry to make
@param[in] row row */
dberr_t
row_ins_index_entry_set_vals(
const dict_index_t* index,
dtuple_t* entry,
const dtuple_t* row);
/***************************************************************//** /***************************************************************//**
Inserts an entry into a clustered index. Tries first optimistic, Inserts an entry into a clustered index. Tries first optimistic,
......
...@@ -3330,8 +3330,8 @@ columns in row. ...@@ -3330,8 +3330,8 @@ columns in row.
@param[in] index index handler @param[in] index index handler
@param[out] entry index entry to make @param[out] entry index entry to make
@param[in] row row @param[in] row row
@return DB_SUCCESS if the set is successful */ @return DB_SUCCESS if the set is successful */
static
dberr_t dberr_t
row_ins_index_entry_set_vals( row_ins_index_entry_set_vals(
const dict_index_t* index, const dict_index_t* index,
......
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