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

Cleanup: Make row_upd_store_row() static

parent 57ec41d6
/***************************************************************************** /*****************************************************************************
Copyright (c) 1996, 2018, Oracle and/or its affiliates. All Rights Reserved. Copyright (c) 1996, 2018, Oracle and/or its affiliates. All Rights Reserved.
Copyright (c) 2018, MariaDB Corporation. Copyright (c) 2018, 2020, MariaDB Corporation.
This program is free software; you can redistribute it and/or modify it under This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software the terms of the GNU General Public License as published by the Free Software
...@@ -371,16 +371,6 @@ row_upd_changes_some_index_ord_field_binary( ...@@ -371,16 +371,6 @@ row_upd_changes_some_index_ord_field_binary(
/*========================================*/ /*========================================*/
const dict_table_t* table, /*!< in: table */ const dict_table_t* table, /*!< in: table */
const upd_t* update);/*!< in: update vector for the row */ const upd_t* update);/*!< in: update vector for the row */
/** Stores to the heap the row on which the node->pcur is positioned.
@param[in] node row update node
@param[in] thd mysql thread handle
@param[in,out] mysql_table NULL, or mysql table object when
user thread invokes dml */
void
row_upd_store_row(
upd_node_t* node,
THD* thd,
TABLE* mysql_table);
/***********************************************************//** /***********************************************************//**
Updates a row in a table. This is a high-level function used Updates a row in a table. This is a high-level function used
in SQL execution graphs. in SQL execution graphs.
......
...@@ -2206,6 +2206,7 @@ row_upd_store_v_row( ...@@ -2206,6 +2206,7 @@ row_upd_store_v_row(
@param[in] thd mysql thread handle @param[in] thd mysql thread handle
@param[in,out] mysql_table NULL, or mysql table object when @param[in,out] mysql_table NULL, or mysql table object when
user thread invokes dml */ user thread invokes dml */
static
void void
row_upd_store_row( row_upd_store_row(
upd_node_t* node, upd_node_t* node,
......
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