1
0
mirror of https://github.com/mariadb-corporation/mariadb-connector-c.git synced 2025-08-08 14:02:17 +03:00

CONC-746: unload parsec plugin in test

After running test_parsec test (unittest connection)
we need to unload the parsec plugin in server to make
mtr happy.
This commit is contained in:
Georg Richter
2024-11-27 16:37:08 +01:00
parent 3590fe6e8b
commit 47ba1f3d5b

View File

@@ -2370,6 +2370,9 @@ static int test_parsec(MYSQL *my)
rc= mysql_query(my, "DROP USER test1@'%'"); rc= mysql_query(my, "DROP USER test1@'%'");
check_mysql_rc(rc, my); check_mysql_rc(rc, my);
rc= mysql_query(my, "UNINSTALL soname IF EXISTS 'auth_parsec'");
check_mysql_rc(rc, my);
mysql_close(mysql); mysql_close(mysql);
return OK; return OK;
} }