mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
a fix for Bug #46652: ndb_restore_compat gives Valgrind error in open_binary_frm(),
until it's fixed in a parent tree
This commit is contained in:
parent
648f4cdf54
commit
a39de6353a
1 changed files with 2 additions and 1 deletions
|
@ -970,8 +970,9 @@ static int open_binary_frm(THD *thd, TABLE_SHARE *share, uchar *head,
|
|||
*/
|
||||
next_chunk+= 4;
|
||||
}
|
||||
else if (share->mysql_version >= 50110)
|
||||
else
|
||||
#endif
|
||||
if (share->mysql_version >= 50110)
|
||||
{
|
||||
/* New auto_partitioned indicator introduced in 5.1.11 */
|
||||
#ifdef WITH_PARTITION_STORAGE_ENGINE
|
||||
|
|
Loading…
Reference in a new issue