1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00

MDEV-9058: protocol: COM_MULTI command (part 1)

Adding a command from the end of avaliable commands numering space (254)
This commit is contained in:
Oleksandr Byelkin
2015-11-26 11:21:56 +01:00
parent e09299511e
commit e5377457d8
7 changed files with 281 additions and 38 deletions

View File

@@ -102,7 +102,9 @@ enum enum_server_command
COM_STMT_PREPARE, COM_STMT_EXECUTE, COM_STMT_SEND_LONG_DATA, COM_STMT_CLOSE,
COM_STMT_RESET, COM_SET_OPTION, COM_STMT_FETCH, COM_DAEMON,
/* don't forget to update const char *command_name[] in sql_parse.cc */
COM_MDB_GAP_BEG,
COM_MDB_GAP_END=253,
COM_MULTI,
/* Must be last */
COM_END
};