mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
MDEV-21612 - remove COM_MULTI from server and C/C
The COM_MULTI did not take off. No connector is using it. Remove related code from server, and client. If anything it is a step simplification of already-bloated dispatch_command(), and related code.
This commit is contained in:
@ -1022,14 +1022,6 @@ public:
|
||||
{ DBUG_ASSERT(m_status == DA_ERROR || m_status == DA_OK ||
|
||||
m_status == DA_OK_BULK); return m_message; }
|
||||
|
||||
bool skip_flush() const
|
||||
{
|
||||
DBUG_ASSERT(m_status == DA_OK || m_status == DA_OK_BULK);
|
||||
return m_skip_flush;
|
||||
}
|
||||
|
||||
void set_skip_flush()
|
||||
{ m_skip_flush= TRUE; }
|
||||
|
||||
uint sql_errno() const
|
||||
{
|
||||
@ -1215,9 +1207,6 @@ private:
|
||||
/** Set to make set_error_status after set_{ok,eof}_status possible. */
|
||||
bool m_can_overwrite_status;
|
||||
|
||||
/** Skip flushing network buffer after writing OK (for COM_MULTI) */
|
||||
bool m_skip_flush;
|
||||
|
||||
/** Message buffer. Can be used by OK or ERROR status. */
|
||||
char m_message[MYSQL_ERRMSG_SIZE];
|
||||
|
||||
|
Reference in New Issue
Block a user