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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
b5328a7d
Commit
b5328a7d
authored
Apr 07, 2005
by
marko@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
InnoDB: Prevent ALTER TABLE ... ENGINE=...
if there are foreign key constraints on the table. (Bug #5574)
parent
699c35c8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
33 additions
and
0 deletions
+33
-0
sql/ha_innodb.cc
sql/ha_innodb.cc
+26
-0
sql/ha_innodb.h
sql/ha_innodb.h
+1
-0
sql/handler.h
sql/handler.h
+2
-0
sql/sql_table.cc
sql/sql_table.cc
+4
-0
No files found.
sql/ha_innodb.cc
View file @
b5328a7d
...
...
@@ -4789,6 +4789,32 @@ ha_innobase::get_foreign_key_create_info(void)
return
(
str
);
}
/*********************************************************************
Checks if ALTER TABLE may change the storage engine of the table.
Changing storage engines is not allowed for tables for which there
are foreign key constraints (parent or child tables). */
bool
ha_innobase
::
can_switch_engines
(
void
)
/*=================================*/
{
row_prebuilt_t
*
prebuilt
=
(
row_prebuilt_t
*
)
innobase_prebuilt
;
bool
can_switch
;
DBUG_ENTER
(
"ha_innobase::can_switch_engines"
);
prebuilt
->
trx
->
op_info
=
"determining if there are foreign key constraints"
;
row_mysql_lock_data_dictionary
(
prebuilt
->
trx
);
can_switch
=
!
UT_LIST_GET_FIRST
(
prebuilt
->
table
->
referenced_list
)
&&
!
UT_LIST_GET_FIRST
(
prebuilt
->
table
->
foreign_list
);
row_mysql_unlock_data_dictionary
(
prebuilt
->
trx
);
prebuilt
->
trx
->
op_info
=
""
;
DBUG_RETURN
(
can_switch
);
}
/***********************************************************************
Checks if a table is referenced by a foreign key. The MySQL manual states that
a REPLACE is either equivalent to an INSERT, or DELETE(s) + INSERT. Only a
...
...
sql/ha_innodb.h
View file @
b5328a7d
...
...
@@ -161,6 +161,7 @@ class ha_innobase: public handler
int
check
(
THD
*
thd
,
HA_CHECK_OPT
*
check_opt
);
char
*
update_table_comment
(
const
char
*
comment
);
char
*
get_foreign_key_create_info
();
bool
can_switch_engines
();
uint
referenced_by_foreign_key
();
void
free_foreign_key_create_info
(
char
*
str
);
THR_LOCK_DATA
**
store_lock
(
THD
*
thd
,
THR_LOCK_DATA
**
to
,
...
...
sql/handler.h
View file @
b5328a7d
...
...
@@ -450,6 +450,8 @@ public:
virtual
void
append_create_info
(
String
*
packet
)
{}
virtual
char
*
get_foreign_key_create_info
()
{
return
(
NULL
);}
/* gets foreign key create string from InnoDB */
/* used in ALTER TABLE; 1 if changing storage engine is allowed */
virtual
bool
can_switch_engines
()
{
return
1
;
}
/* used in REPLACE; is > 0 if table is referred by a FOREIGN KEY */
virtual
uint
referenced_by_foreign_key
()
{
return
0
;}
virtual
void
init_table_handle_for_HANDLER
()
...
...
sql/sql_table.cc
View file @
b5328a7d
...
...
@@ -3109,6 +3109,10 @@ int mysql_alter_table(THD *thd,char *new_db, char *new_name,
/* Safety fix for innodb */
if
(
lower_case_table_names
)
my_casedn_str
(
files_charset_info
,
tmp_name
);
if
(
new_db_type
!=
old_db_type
&&
!
table
->
file
->
can_switch_engines
())
{
my_error
(
ER_ROW_IS_REFERENCED
,
MYF
(
0
));
goto
err
;
}
create_info
->
db_type
=
new_db_type
;
if
(
!
create_info
->
comment
)
create_info
->
comment
=
table
->
comment
;
...
...
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