Skip to content

Commit da7564e

Browse files
committed
Cleanup: Make row_upd_store_row() static
1 parent 57ec41d commit da7564e

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed

storage/innobase/include/row0upd.h

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*****************************************************************************
22
33
Copyright (c) 1996, 2018, Oracle and/or its affiliates. All Rights Reserved.
4-
Copyright (c) 2018, MariaDB Corporation.
4+
Copyright (c) 2018, 2020, MariaDB Corporation.
55
66
This program is free software; you can redistribute it and/or modify it under
77
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(
371371
/*========================================*/
372372
const dict_table_t* table, /*!< in: table */
373373
const upd_t* update);/*!< in: update vector for the row */
374-
/** Stores to the heap the row on which the node->pcur is positioned.
375-
@param[in] node row update node
376-
@param[in] thd mysql thread handle
377-
@param[in,out] mysql_table NULL, or mysql table object when
378-
user thread invokes dml */
379-
void
380-
row_upd_store_row(
381-
upd_node_t* node,
382-
THD* thd,
383-
TABLE* mysql_table);
384374
/***********************************************************//**
385375
Updates a row in a table. This is a high-level function used
386376
in SQL execution graphs.

storage/innobase/row/row0upd.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2206,6 +2206,7 @@ row_upd_store_v_row(
22062206
@param[in] thd mysql thread handle
22072207
@param[in,out] mysql_table NULL, or mysql table object when
22082208
user thread invokes dml */
2209+
static
22092210
void
22102211
row_upd_store_row(
22112212
upd_node_t* node,

0 commit comments

Comments
 (0)