diff options
author | marko@hundin.mysql.fi <> | 2005-04-12 16:12:34 +0300 |
---|---|---|
committer | marko@hundin.mysql.fi <> | 2005-04-12 16:12:34 +0300 |
commit | d5646eb6c5c7155abc3978734db9d6040c28df72 (patch) | |
tree | ec3a9f371d8bab7dc419ea679440283c202ffb34 /innobase/include/dict0load.h | |
parent | b38a5171a62854f5c5f748dacbb6454dd87788f5 (diff) | |
download | mariadb-git-d5646eb6c5c7155abc3978734db9d6040c28df72.tar.gz |
InnoDB: Ignore character set mismatch in ALTER TABLE and RENAME TABLE
if foreign_key_checks=0. (Bug #9802)
Diffstat (limited to 'innobase/include/dict0load.h')
-rw-r--r-- | innobase/include/dict0load.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/innobase/include/dict0load.h b/innobase/include/dict0load.h index 1f0a5407140..f13620bc6e8 100644 --- a/innobase/include/dict0load.h +++ b/innobase/include/dict0load.h @@ -81,7 +81,8 @@ ulint dict_load_foreigns( /*===============*/ /* out: DB_SUCCESS or error code */ - const char* table_name); /* in: table name */ + const char* table_name, /* in: table name */ + ibool check_types); /* in: TRUE=check type compatibility */ /************************************************************************ Prints to the standard output information on all tables found in the data dictionary system table. */ |