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

Remove default argument to mysql_truncate()

Update to new valgrind


mysql-test/mysql-test-run.sh:
  Update for new valgrind
sql/mysql_priv.h:
  Remove default argument to mysql_truncate()
sql/sql_parse.cc:
  Remove default argument to mysql_truncate()
This commit is contained in:
unknown
2004-08-26 00:37:25 +03:00
parent b940ae1012
commit 8ed5952a86
3 changed files with 3 additions and 3 deletions

View File

@ -2046,7 +2046,7 @@ mysql_execute_command(void)
send_error(&thd->net,ER_LOCK_OR_ACTIVE_TRANSACTION,NullS);
goto error;
}
res=mysql_truncate(thd,tables);
res=mysql_truncate(thd, tables, 0);
break;
case SQLCOM_DELETE:
{