Commit 806ca8dd authored by Olivier Bertrand's avatar Olivier Bertrand

- Do not check columns name length of dbf catalog tables. They return info

  on a dbf table but are not dbf tables.

modified:
  storage/connect/ha_connect.cc
parent 4adb4256
......@@ -3994,7 +3994,7 @@ int ha_connect::create(const char *name, TABLE *table_arg,
rc= HA_ERR_INTERNAL_ERROR;
DBUG_RETURN(rc);
} else
dbf= (GetTypeID(options->type) == TAB_DBF);
dbf= (GetTypeID(options->type) == TAB_DBF && !options->catfunc);
if (type == TAB_XML) {
bool dom; // True: MS-DOM, False libxml2
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment