diff options
author | Vladislav Vaintroub <wlad@mariadb.com> | 2020-07-08 18:31:00 +0200 |
---|---|---|
committer | Vladislav Vaintroub <wlad@mariadb.com> | 2020-07-14 11:16:24 +0200 |
commit | b0d2a59d9ab6e68461ba01becd791e1ab6e8ae27 (patch) | |
tree | 1b160b9669d7e410c5401f92ebc8a993530b0226 /sql/wsrep_schema.cc | |
parent | 1a2b494100e5a81c8ac568899d66884b9936cf98 (diff) | |
download | mariadb-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/wsrep_schema.cc')
-rw-r--r-- | sql/wsrep_schema.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/wsrep_schema.cc b/sql/wsrep_schema.cc index 80bc53b1790..08c90e488bd 100644 --- a/sql/wsrep_schema.cc +++ b/sql/wsrep_schema.cc @@ -196,7 +196,7 @@ static int execute_SQL(THD* thd, const char* sql, uint length) { thd->set_query((char*)sql, length); thd->set_query_id(next_query_id()); - mysql_parse(thd, (char*)sql, length, & parser_state, FALSE, FALSE); + mysql_parse(thd, (char*)sql, length, & parser_state); if (thd->is_error()) { WSREP_WARN("Wsrep_schema::execute_sql() failed, %d %s\nSQL: %s", |