1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Fixed compile errors (when compiling in debug mode)

This commit is contained in:
monty@mysql.com
2005-12-25 16:34:10 +02:00
parent 939f80be2e
commit ba99b6c565
2 changed files with 6 additions and 4 deletions

View File

@ -953,7 +953,7 @@ run_scheduler(statement *stmts,
case 0:
/* child */
DBUG_PRINT("info", ("fork returned 0, calling task(\"%s\"), pid %d gid %d",
script, pid, getgid()));
stmts->string, pid, getgid()));
if (verbose >= 2)
fprintf(stderr,
"%s: fork returned 0, calling task pid %d gid %d\n",
@ -1001,7 +1001,7 @@ run_task(statement *qstmt)
MYSQL_ROW row;
DBUG_ENTER("run_task");
DBUG_PRINT("info", ("task script \"%s\"", script));
DBUG_PRINT("info", ("task script \"%s\"", qstmt->string));
mysql_init(&mysql);
@ -1086,9 +1086,10 @@ load_data(statement *load_stmt)
{
if (mysql_real_query(&mysql, ptr->string, ptr->length))
{
DBUG_PRINT("info", ("iteration %d with INSERT statement %s", script));
DBUG_PRINT("info", ("iteration %d with INSERT statement %s", ptr->string));
fprintf(stderr,"%s: Cannot insert into table using sql: %.*s ERROR: %s\n",
my_progname, (uint)ptr->length, ptr->string, mysql_error(&mysql));
my_progname, (uint)ptr->length, ptr->string,
mysql_error(&mysql));
exit(1);
}
}