diff options
author | Eugene Kosov <claprix@yandex.ru> | 2018-06-01 21:39:38 +0300 |
---|---|---|
committer | Sergey Vojtovich <svoj@mariadb.org> | 2019-03-22 22:57:16 +0400 |
commit | 67b601c5037a3b2cf4969aaa7a6f39dc1fd96610 (patch) | |
tree | 3a509025be743e97ad6b502693846b085bb91cc0 /sql/sql_update.h | |
parent | 8e9c5d1057abe14eeaa30ff47dec03f3594f5eca (diff) | |
download | mariadb-git-67b601c5037a3b2cf4969aaa7a6f39dc1fd96610.tar.gz |
remove unused argument
Diffstat (limited to 'sql/sql_update.h')
-rw-r--r-- | sql/sql_update.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sql/sql_update.h b/sql/sql_update.h index 4c6f89d8468..8457fe8f154 100644 --- a/sql/sql_update.h +++ b/sql/sql_update.h @@ -31,8 +31,7 @@ bool check_unique_table(THD *thd, TABLE_LIST *table_list); int mysql_update(THD *thd,TABLE_LIST *tables,List<Item> &fields, List<Item> &values,COND *conds, uint order_num, ORDER *order, ha_rows limit, - enum enum_duplicates handle_duplicates, bool ignore, - ha_rows *found_return, ha_rows *updated_return); + bool ignore, ha_rows *found_return, ha_rows *updated_return); bool mysql_multi_update(THD *thd, TABLE_LIST *table_list, List<Item> *fields, List<Item> *values, COND *conds, ulonglong options, |