mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 20:07:13 +02:00
Added xml patch to mysqldump.
Made innodb to compile more cleanly with debugging options enabled. Fixed a few bugs and found a few possible bugs, which I hope Heikki will check. Comments needs to be fixed too. Some while() functions should be changed to do ... until for documenting purposes, because some of them must and will be processed at least once, or a variable would be used uninitialized. Regards, Jani
This commit is contained in:
parent
8e2bfcb876
commit
d0e8306203
51 changed files with 441 additions and 348 deletions
|
|
@ -101,7 +101,7 @@ trx_rollback_for_mysql(
|
|||
return(DB_SUCCESS);
|
||||
}
|
||||
|
||||
trx->op_info = "rollback";
|
||||
trx->op_info = (char *) "rollback";
|
||||
|
||||
/* Tell Innobase server that there might be work for
|
||||
utility threads: */
|
||||
|
|
@ -117,7 +117,7 @@ trx_rollback_for_mysql(
|
|||
|
||||
srv_active_wake_master_thread();
|
||||
|
||||
trx->op_info = "";
|
||||
trx->op_info = (char *) "";
|
||||
|
||||
return(err);
|
||||
}
|
||||
|
|
@ -138,7 +138,7 @@ trx_rollback_last_sql_stat_for_mysql(
|
|||
return(DB_SUCCESS);
|
||||
}
|
||||
|
||||
trx->op_info = "rollback of SQL statement";
|
||||
trx->op_info = (char *) "rollback of SQL statement";
|
||||
|
||||
/* Tell Innobase server that there might be work for
|
||||
utility threads: */
|
||||
|
|
@ -154,7 +154,7 @@ trx_rollback_last_sql_stat_for_mysql(
|
|||
|
||||
srv_active_wake_master_thread();
|
||||
|
||||
trx->op_info = "";
|
||||
trx->op_info = (char *) "";
|
||||
|
||||
return(err);
|
||||
}
|
||||
|
|
@ -180,7 +180,7 @@ trx_rollback_all_without_sess(void)
|
|||
|
||||
if (!trx_dummy_sess) {
|
||||
trx_dummy_sess = sess_open(NULL, (byte*)"Dummy sess",
|
||||
ut_strlen("Dummy sess"));
|
||||
ut_strlen((char *) "Dummy sess"));
|
||||
}
|
||||
|
||||
mutex_exit(&kernel_mutex);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue