summaryrefslogtreecommitdiff
path: root/sql/log_event_server.cc
diff options
context:
space:
mode:
authorVladislav Vaintroub <wlad@mariadb.com>2020-07-08 18:31:00 +0200
committerVladislav Vaintroub <wlad@mariadb.com>2020-07-14 11:16:24 +0200
commitb0d2a59d9ab6e68461ba01becd791e1ab6e8ae27 (patch)
tree1b160b9669d7e410c5401f92ebc8a993530b0226 /sql/log_event_server.cc
parent1a2b494100e5a81c8ac568899d66884b9936cf98 (diff)
downloadmariadb-git-b0d2a59d9ab6e68461ba01becd791e1ab6e8ae27.tar.gz
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.
Diffstat (limited to 'sql/log_event_server.cc')
-rw-r--r--sql/log_event_server.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/sql/log_event_server.cc b/sql/log_event_server.cc
index fb75bee9f21..a6e02413d4c 100644
--- a/sql/log_event_server.cc
+++ b/sql/log_event_server.cc
@@ -1900,8 +1900,7 @@ int Query_log_event::do_apply_event(rpl_group_info *rgi,
thd->variables.sql_log_slow= !MY_TEST(global_system_variables.log_slow_disabled_statements & LOG_SLOW_DISABLE_SLAVE);
}
- mysql_parse(thd, thd->query(), thd->query_length(), &parser_state,
- FALSE, FALSE);
+ mysql_parse(thd, thd->query(), thd->query_length(), &parser_state);
/* Finalize server status flags after executing a statement. */
thd->update_server_status();
log_slow_statement(thd);