mirror of
https://github.com/MariaDB/server.git
synced 2025-09-19 23:55:29 +02:00
Revert behaviour change introduced in WL1280. Fixes tests.
sql/handler.cc: Revert behaviour to pass tests
This commit is contained in:
parent
aeade221dc
commit
2e6484f583
1 changed files with 4 additions and 0 deletions
|
@ -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 */
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue