Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
5e87f49a
Commit
5e87f49a
authored
Jan 18, 2018
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make row_mysql_table_id_reassign() static
parent
4c147954
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
28 deletions
+4
-28
storage/innobase/include/row0mysql.h
storage/innobase/include/row0mysql.h
+0
-12
storage/innobase/row/row0mysql.cc
storage/innobase/row/row0mysql.cc
+2
-2
storage/xtradb/include/row0mysql.h
storage/xtradb/include/row0mysql.h
+0
-12
storage/xtradb/row/row0mysql.cc
storage/xtradb/row/row0mysql.cc
+2
-2
No files found.
storage/innobase/include/row0mysql.h
View file @
5e87f49a
...
...
@@ -586,18 +586,6 @@ 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
row format which is presented to the table handler in ha_innobase.
This template struct is used to speed up row transformations between
...
...
storage/innobase/row/row0mysql.cc
View file @
5e87f49a
/*****************************************************************************
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
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)
/*********************************************************************//**
Reassigns the table identifier of a table.
@return error code or DB_SUCCESS */
UNIV_INTERN
static
dberr_t
row_mysql_table_id_reassign
(
/*========================*/
...
...
storage/xtradb/include/row0mysql.h
View file @
5e87f49a
...
...
@@ -588,18 +588,6 @@ 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
row format which is presented to the table handler in ha_innobase.
This template struct is used to speed up row transformations between
...
...
storage/xtradb/row/row0mysql.cc
View file @
5e87f49a
/*****************************************************************************
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
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)
/*********************************************************************//**
Reassigns the table identifier of a table.
@return error code or DB_SUCCESS */
UNIV_INTERN
static
dberr_t
row_mysql_table_id_reassign
(
/*========================*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment