summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <monty@mysql.com>2004-08-26 00:39:43 +0300
committerunknown <monty@mysql.com>2004-08-26 00:39:43 +0300
commit7c0a7b2da4712d311c0fca9b27809895fc76fd57 (patch)
treee2754d3a230fc8c5f8728e8df5f64d1b8a4717a1
parentabfdace02477972b365f01534fe597d5711148e8 (diff)
parent7586eae818da861389d2d5c157d7552e934ca18f (diff)
downloadmariadb-git-7c0a7b2da4712d311c0fca9b27809895fc76fd57.tar.gz
merge
sql/mysql_priv.h: Auto merged sql/sql_parse.cc: Auto merged mysql-test/mysql-test-run.sh: merge (use new code)
-rw-r--r--sql/mysql_priv.h2
-rw-r--r--sql/sql_parse.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/sql/mysql_priv.h b/sql/mysql_priv.h
index f53e14878b0..d70be1cb9f9 100644
--- a/sql/mysql_priv.h
+++ b/sql/mysql_priv.h
@@ -477,7 +477,7 @@ int mysql_insert(THD *thd,TABLE_LIST *table,List<Item> &fields,
void kill_delayed_threads(void);
int mysql_delete(THD *thd, TABLE_LIST *table, COND *conds, ORDER *order,
ha_rows rows, ulong options);
-int mysql_truncate(THD *thd, TABLE_LIST *table_list, bool dont_send_ok=0);
+int mysql_truncate(THD *thd, TABLE_LIST *table_list, bool dont_send_ok);
TABLE *open_ltable(THD *thd, TABLE_LIST *table_list, thr_lock_type update);
TABLE *open_table(THD *thd,const char *db,const char *table,const char *alias,
bool *refresh);
diff --git a/sql/sql_parse.cc b/sql/sql_parse.cc
index f4887c6a8e6..14fc748c288 100644
--- a/sql/sql_parse.cc
+++ b/sql/sql_parse.cc
@@ -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:
{