Commit 6d3bd1e0 authored by evgen@moonbone.local's avatar evgen@moonbone.local

sql_update.cc:

  After merge fix
parent bbe58c7e
......@@ -237,9 +237,8 @@ int mysql_update(THD *thd,
}
// Don't count on usage of 'only index' when calculating which key to use
table->used_keys.clear_all();
select= make_select(table, 0, 0, conds, 0, &error);
if (limit)
select=make_select(table,0,0,conds,&error);
select= make_select(table, 0, 0, conds, 0, &error);
if (error || !limit ||
(select && select->check_quick(thd, safe_update, limit)))
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment