Commit 88c6de58 authored by unknown's avatar unknown

item.h:

  Fix for fix for bug#9728 decreased functionality in "on duplicate key update"
  Have to return false to set flag for whole expression.


sql/item.h:
  Fix for fix for bug#9728 decreased functionality in "on duplicate key update"
  Have to return false to set flag for whole expression.
parent 75ff2275
......@@ -336,7 +336,7 @@ class Item {
virtual bool set_flags_processor(byte *args)
{
this->item_flags|= *((uint8*)args);
return true;
return false;
}
};
......
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