Skip to content

Commit

Permalink
MDEV-11487: Make row_ins_index_entry_set_vals() static
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-m committed Oct 11, 2018
1 parent 8d116d1 commit 940f0c7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
10 changes: 0 additions & 10 deletions storage/innobase/include/row0ins.h
Expand Up @@ -127,16 +127,6 @@ row_ins_sec_index_entry_low(
/*!< in: if true, just do duplicate check
and return. don't execute actual insert. */
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,
Expand Down
2 changes: 1 addition & 1 deletion storage/innobase/row/row0ins.cc
Expand Up @@ -3330,8 +3330,8 @@ columns in row.
@param[in] index index handler
@param[out] entry index entry to make
@param[in] row row
@return DB_SUCCESS if the set is successful */
static
dberr_t
row_ins_index_entry_set_vals(
const dict_index_t* index,
Expand Down

0 comments on commit 940f0c7

Please sign in to comment.