1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +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:
Vladislav Vaintroub
2020-07-08 18:31:00 +02:00
parent 1a2b494100
commit b0d2a59d9a
19 changed files with 59 additions and 235 deletions

View File

@@ -20986,6 +20986,16 @@ static void test_mdev20261()
}
static void test_execute_direct()
{
#ifndef EMBEDDED_LIBRARY
MYSQL_STMT* stmt= mysql_stmt_init(mysql);
int rc= mariadb_stmt_execute_direct(stmt,"do 1",-1);
myquery(rc);
mysql_stmt_close(stmt);
#endif
}
static struct my_tests_st my_tests[]= {
{ "disable_query_logs", disable_query_logs },
{ "test_view_sp_list_fields", test_view_sp_list_fields },
@@ -21281,6 +21291,7 @@ static struct my_tests_st my_tests[]= {
{ "test_explain_meta", test_explain_meta },
{ "test_mdev18408", test_mdev18408 },
{ "test_mdev20261", test_mdev20261 },
{ "test_execute_direct", test_execute_direct },
{ 0, 0 }
};