Commit 5e87f49a authored by Marko Mäkelä's avatar Marko Mäkelä

Make row_mysql_table_id_reassign() static

parent 4c147954
...@@ -586,18 +586,6 @@ void ...@@ -586,18 +586,6 @@ void
row_mysql_close(void); row_mysql_close(void);
/*=================*/ /*=================*/
/*********************************************************************//**
Reassigns the table identifier of a table.
@return error code or DB_SUCCESS */
UNIV_INTERN
dberr_t
row_mysql_table_id_reassign(
/*========================*/
dict_table_t* table, /*!< in/out: table */
trx_t* trx, /*!< in/out: transaction */
table_id_t* new_id) /*!< out: new table id */
MY_ATTRIBUTE((nonnull, warn_unused_result));
/* A struct describing a place for an individual column in the MySQL /* A struct describing a place for an individual column in the MySQL
row format which is presented to the table handler in ha_innobase. row format which is presented to the table handler in ha_innobase.
This template struct is used to speed up row transformations between This template struct is used to speed up row transformations between
......
/***************************************************************************** /*****************************************************************************
Copyright (c) 2000, 2017, Oracle and/or its affiliates. All Rights Reserved. Copyright (c) 2000, 2017, Oracle and/or its affiliates. All Rights Reserved.
Copyright (c) 2017, MariaDB Corporation. Copyright (c) 2017, 2018, 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
...@@ -2828,7 +2828,7 @@ row_add_table_to_background_drop_list(table_id_t table_id) ...@@ -2828,7 +2828,7 @@ row_add_table_to_background_drop_list(table_id_t table_id)
/*********************************************************************//** /*********************************************************************//**
Reassigns the table identifier of a table. Reassigns the table identifier of a table.
@return error code or DB_SUCCESS */ @return error code or DB_SUCCESS */
UNIV_INTERN static
dberr_t dberr_t
row_mysql_table_id_reassign( row_mysql_table_id_reassign(
/*========================*/ /*========================*/
......
...@@ -588,18 +588,6 @@ void ...@@ -588,18 +588,6 @@ void
row_mysql_close(void); row_mysql_close(void);
/*=================*/ /*=================*/
/*********************************************************************//**
Reassigns the table identifier of a table.
@return error code or DB_SUCCESS */
UNIV_INTERN
dberr_t
row_mysql_table_id_reassign(
/*========================*/
dict_table_t* table, /*!< in/out: table */
trx_t* trx, /*!< in/out: transaction */
table_id_t* new_id) /*!< out: new table id */
MY_ATTRIBUTE((nonnull, warn_unused_result));
/* A struct describing a place for an individual column in the MySQL /* A struct describing a place for an individual column in the MySQL
row format which is presented to the table handler in ha_innobase. row format which is presented to the table handler in ha_innobase.
This template struct is used to speed up row transformations between This template struct is used to speed up row transformations between
......
/***************************************************************************** /*****************************************************************************
Copyright (c) 2000, 2016, Oracle and/or its affiliates. All Rights Reserved. Copyright (c) 2000, 2016, Oracle and/or its affiliates. All Rights Reserved.
Copyright (c) 2017, MariaDB Corporation. Copyright (c) 2017, 2018, 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
...@@ -2840,7 +2840,7 @@ row_add_table_to_background_drop_list(table_id_t table_id) ...@@ -2840,7 +2840,7 @@ row_add_table_to_background_drop_list(table_id_t table_id)
/*********************************************************************//** /*********************************************************************//**
Reassigns the table identifier of a table. Reassigns the table identifier of a table.
@return error code or DB_SUCCESS */ @return error code or DB_SUCCESS */
UNIV_INTERN static
dberr_t dberr_t
row_mysql_table_id_reassign( row_mysql_table_id_reassign(
/*========================*/ /*========================*/
......
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