mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
fix after merge of 5.0 into 5.1
This commit is contained in:
@ -82,12 +82,12 @@ bool mysqld_show_storage_engines(THD *thd)
|
||||
option_name= "DEFAULT";
|
||||
protocol->store(option_name, system_charset_info);
|
||||
protocol->store((*types)->comment, system_charset_info);
|
||||
protocol->store((*types)->commit ? "YES" : "NO", system_charset_info);
|
||||
protocol->store((*types)->prepare ? "YES" : "NO", system_charset_info);
|
||||
protocol->store((*types)->savepoint_set ? "YES" : "NO", system_charset_info);
|
||||
if (protocol->write())
|
||||
DBUG_RETURN(TRUE);
|
||||
}
|
||||
move protocol->store((*types)->commit ? "YES" : "NO", system_charset_info);
|
||||
move protocol->store((*types)->prepare ? "YES" : "NO", system_charset_info);
|
||||
move protocol->store((*types)->savepoint_set ? "YES" : "NO", system_charset_info);
|
||||
}
|
||||
send_eof(thd);
|
||||
DBUG_RETURN(FALSE);
|
||||
|
Reference in New Issue
Block a user