summaryrefslogtreecommitdiff
path: root/sql/unireg.cc
diff options
context:
space:
mode:
authorunknown <mikron@c-4d08e253.1238-1-64736c10.cust.bredbandsbolaget.se>2006-02-01 10:06:07 +0100
committerunknown <mikron@c-4d08e253.1238-1-64736c10.cust.bredbandsbolaget.se>2006-02-01 10:06:07 +0100
commit520dffb5204a471030c3e43494cd3419136bce05 (patch)
treeee595d281d0c24ddb01956f2536edd9b4c49ea04 /sql/unireg.cc
parent3a2b70f8414a1ee02f8a210f22a2707f66bf0ce5 (diff)
downloadmariadb-git-520dffb5204a471030c3e43494cd3419136bce05.tar.gz
WL 2826: First step in error handling of ALTER TABLE for partitioning
BUILD/SETUP.sh: Add possibility for BUILD scripts to add error inject flag BUILD/compile-pentium-debug-max: Add error inject flag to this script configure.in: Add handling of --with-error-inject in configure script sql/ha_ndbcluster.cc: Add possibility to rename handler file sql/ha_ndbcluster.h: Add possibility to rename handler file sql/ha_partition.cc: Add possibility to rename handler file sql/ha_partition.h: Add possibility to rename handler file sql/handler.h: Add possibility to rename handler file sql/mysql_priv.h: Add error inject macros sql/mysqld.cc: Add error inject system variables sql/set_var.cc: Add error inject system variables sql/sql_class.h: Add error inject system variables sql/sql_table.cc: Start modifying code for introducing table log, Step 1 sql/unireg.cc: Add rename flag to handler file call sql/sql_partition.cc: Changes to ADD/DROP/CHANGE partitions
Diffstat (limited to 'sql/unireg.cc')
-rw-r--r--sql/unireg.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/unireg.cc b/sql/unireg.cc
index 2c5f4b34091..ab362b130b0 100644
--- a/sql/unireg.cc
+++ b/sql/unireg.cc
@@ -330,7 +330,7 @@ int rea_create_table(THD *thd, const char *path,
// Make sure mysql_create_frm din't remove extension
DBUG_ASSERT(*fn_rext(frm_name));
- if (file->create_handler_files(path))
+ if (file->create_handler_files(path, NULL, FALSE))
goto err_handler;
if (!create_info->frm_only && ha_create_table(thd, path, db, table_name,
create_info,0))