Commit 2e6484f5 authored by unknown's avatar unknown

Revert behaviour change introduced in WL1280. Fixes tests.


sql/handler.cc:
  Revert behaviour to pass tests
parent aeade221
...@@ -137,7 +137,11 @@ enum db_type ha_checktype(enum db_type database_type) ...@@ -137,7 +137,11 @@ enum db_type ha_checktype(enum db_type database_type)
break; break;
} }
/* Use this as default */ /* Use this as default */
#if 0
return((enum db_type) current_thd->variables.table_type); return((enum db_type) current_thd->variables.table_type);
#else
return(DB_TYPE_MYISAM);
#endif
} /* ha_checktype */ } /* ha_checktype */
......
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