1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

Merge branch '5.5-galera' into 10.0-galera

This commit is contained in:
Nirbhay Choubey
2015-05-12 18:50:59 -04:00
6 changed files with 50 additions and 17 deletions

View File

@ -886,7 +886,11 @@ bool do_command(THD *thd)
{
bool return_value;
char *packet= 0;
#ifdef WITH_WSREP
ulong packet_length= 0; // just to avoid (false positive) compiler warning
#else
ulong packet_length;
#endif /* WITH_WSREP */
NET *net= &thd->net;
enum enum_server_command command;
DBUG_ENTER("do_command");