diff options
author | unknown <msvensson@neptunus.(none)> | 2005-11-02 15:53:04 +0100 |
---|---|---|
committer | unknown <msvensson@neptunus.(none)> | 2005-11-02 15:53:04 +0100 |
commit | 7b5034f5325d1b985277e9a714303930a8220861 (patch) | |
tree | 2ee0e1b6bb0bdf078f424e661d1cd174ca4c7863 /sql/handler.cc | |
parent | c32ae9b7ac188efde5efd2773fcbcbfa2bbe8ab8 (diff) | |
download | mariadb-git-7b5034f5325d1b985277e9a714303930a8220861.tar.gz |
BUG#14514 Creating table with packed key fails silently
include/my_base.h:
Move HA_CREATE_FROM_ENGINE to HA_OPTION_CREATE_FROM_ENGINE
sql/ha_ndbcluster.cc:
Use HA_OPTION_CREATE_FROM_ENGINE
sql/handler.cc:
Use HA_OPTION_CREATE_FROM_ENGINE
Diffstat (limited to 'sql/handler.cc')
-rw-r--r-- | sql/handler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/handler.cc b/sql/handler.cc index 81e94af5dc7..0cc3deda523 100644 --- a/sql/handler.cc +++ b/sql/handler.cc @@ -2016,7 +2016,7 @@ int ha_create_table_from_engine(THD* thd, DBUG_RETURN(3); update_create_info_from_table(&create_info, &table); - create_info.table_options|= HA_CREATE_FROM_ENGINE; + create_info.table_options|= HA_OPTION_CREATE_FROM_ENGINE; if (lower_case_table_names == 2 && !(table.file->table_flags() & HA_FILE_BASED)) |