Commit 256c99fd 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 a6c7fb45
......@@ -336,7 +336,7 @@ public:
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