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

Plugin fixes

- include ma_errmsg.h if plugin is built dynamically
- trace_example fixes
This commit is contained in:
Georg Richter
2016-11-24 08:56:27 +01:00
parent 3e624e50df
commit aabaac04aa
9 changed files with 35 additions and 15 deletions

View File

@@ -60,6 +60,8 @@ static int bulk1(MYSQL *mysql)
if (!bulk_enabled)
return SKIP;
rc= mysql_select_db(mysql, "testc");
rc= mysql_query(mysql, "DROP TABLE IF EXISTS bulk1");
check_mysql_rc(rc, mysql);