diff options
author | heikki@hundin.mysql.fi <> | 2004-10-07 20:53:20 +0300 |
---|---|---|
committer | heikki@hundin.mysql.fi <> | 2004-10-07 20:53:20 +0300 |
commit | 89ecfd7fa64ec1079428cb4019ea90e22171d604 (patch) | |
tree | 6f703fce19246e6df6d180aa783050b5119d5b15 /innobase/dict/dict0load.c | |
parent | 7c18f064e697b388197000f78427f967ff0d7d70 (diff) | |
download | mariadb-git-89ecfd7fa64ec1079428cb4019ea90e22171d604.tar.gz |
Many files:
Fix bug #5137: if innodb_file_per_table was specified, CREATE TEMPORARY TABLE ... TYPE=InnoDB said that cannot find path specified, and made mysqld to exit(1)
Diffstat (limited to 'innobase/dict/dict0load.c')
-rw-r--r-- | innobase/dict/dict0load.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/innobase/dict/dict0load.c b/innobase/dict/dict0load.c index 9293b117899..1866921c589 100644 --- a/innobase/dict/dict0load.c +++ b/innobase/dict/dict0load.c @@ -262,7 +262,7 @@ loop: exists; print a warning to the .err log if not */ fil_space_for_table_exists_in_mem(space_id, name, - TRUE, TRUE); + FALSE, TRUE, TRUE); } mem_free(name); @@ -761,7 +761,7 @@ dict_load_table( /* Check if the tablespace exists and has the right name */ if (space != 0) { if (fil_space_for_table_exists_in_mem(space, name, FALSE, - FALSE)) { + FALSE, FALSE)) { /* Ok; (if we did a crash recovery then the tablespace can already be in the memory cache) */ } else { |